Chats - WhatsApp Direct Chat without saving number

ImageView

ImageView in Android with Example


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

Previous Post Next Post