I'm trying to display an image in a ImageView using Glide library, the image is in res > drawable folder, and its name retrived from a db. How can I get a resource using an Uri?, redWifi.getImagen()
returns a string like "imagename.png".
I'm using the next code but doesn't show the image.
Glide.with(detallesRedGuardadaActivity.this)
.load(Uri.parse("file:///android_asset/" + redWifi.getImagen()))
.asBitmap()
.into(iconoRed);
I tried with .load(Uri.parse("file://android_asset/" + redWifi.getImagen()))
but still not working.
The URL
file:///android_asset/
means that you are pointing toassets
folder in your project. If you don't know where to put this directory, take a look at the Project structure with Gradle here.After that put your images in that folder, and then this should work: