Reputation: 60879
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.
Upvotes: 13
Views: 34714
Reputation: 99
I encountered the same problem. The solution for me was to move the ".png" from "drawable-21" to "drawable".
Upvotes: 1
Reputation: 1760
you can also set the image using an xml file with the following attriblute
android:src="@drawable/nochart"
Upvotes: 3