Search code examples
androidpngimageviewdrawable

How to set a PNG file to an ImageView?


I have a file called nochart.png in /drawable.

How can I set this to an ImageView?

chartImageView.setImageDrawable(R.drawable.nochart);

Does not compile.


Solution

  • Use:

    chartImageView.setImageResource(R.drawable.nochart);