ImageView is used to display an image ;
ImageView will display image from drawable resources. See the example below
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/imagep" />
Post a Comment