How to load images from mipmap folder programmatically?

35.7k views Asked by At

How to load images from the mipmap folder programmatically (as done with the drawables)?

  img.setImageResource(imageId);

I am using Android Studio 1.2.1.

2

There are 2 answers

0
Tufan On BEST ANSWER

In Android Studio We have mipmap instead of drawable You Can Find Documents Related To Your Assets Here

You can use it Like

 img.setImageResource(R.mipmap.ic_launcher);
0
Bidhan On

You can do

img.setImageResource(R.mipmap.imageid);