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.
setImageResource(int resId)
sets a drawable as the content of this ImageView
.imageView.setImageResource(R.drawable.anyImage)
Parameter | Description |
---|---|
resId | your Image file name in the res folder (usually in drawable folder) |