How to load an image from the assets folder in android?
Here is a simple example showing how to load an image stores in assets folder in android? Done.
Here is a simple example showing how to load an image stores in assets folder in android? Done.
With the following code you can load images in your drawable folder dynamically by giving the filename as a String. For that you have to use getResources().getIdentifier which has parameters as the “path”,”drawable” and the “package name”. This returns a unique resource ID which can be used to set the image for a ImageView using… Read More »