Android ImageView
ImageView:
ImageView is a user interface detail that is used to show pix or drawables within an app's format.
It is a versatile and normally used widget for presenting visible content material, which includes icons, pics, or images.
ImageView inherits from the View class and is designed particularly for managing pix.
Example:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ImageViewExample"
android:orientation="vertical"
android:gravity="center">
<ImageView
android:id="@+id/image"
android:layout_width="300dp"
android:layout_height="200dp"
android:src="@drawable/imageview"
/>
</LinearLayout>
Output