ImageView
suggest changeIntroduction
ImageView (android.widget.ImageView
) is a View for displaying and manipulating image resources, such as Drawables and Bitmaps.
Some effects, discussed in this topic, can be applied to the image. The image source can be set in XML file (layout
folder) or by programatically in Java code.
Syntax
- The method
setImageResource(int resId)
sets a drawable as the content of thisImageView
. - Usage:
imageView.setImageResource(R.drawable.anyImage)
Parameters
Parameter| Description|
—— | —— |resId
| your Image file name in the res
folder (usually in drawable
folder)|
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents