ImageView in Android With Example
ImageView in Android With Example
ImageView class is used to display any kind of image resource in the android application either it can
be android.graphics.Bitmap or android.graphics.drawable.Drawable (It is a general abstraction for
anything that can be drawn in Android). ImageView class or android.widget.ImageView inherits
the android.view.View class which is the subclass of Kotlin. AnyClass.Application of ImageView is
also in applying tints to an image in order to reuse a drawable resource and create overlays on
background images. Moreover, ImageView is also used to control the size and movement of an
image.
Whenever ImageView is added to an activity, it means there is a requirement for an image resource.
Thus it is oblivious to provide an Image file to that ImageView class. It can be done by adding an
image file that is present in the Android Studio itself or we can add our own image file. Android
Studio owns a wide range of drawable resources which are very common in the android application
layout. The following are the steps to add a drawable resource to the ImageView class.
Switch from the Code View to the Design View of the activity_main.xml File
Drag the ImageView widget to the activity area of the application, a pop-up dialogue box will open
choose from the wide range of drawable resources and click “OK“
For Adding an Image File other than Android Studio Drawable Resources:
Click on the “Resource Manager” tab on the leftmost panel and select the “Import Drawables”
option
Select the path of the image file on your computer and click “OK“. After that set, the “Qualifier type”
and “value” of the image file according to your need and click “Next” then “Import“
Drag the ImageView class in the activity area, a pop-up dialogue box will appear which contains your
imported image file. Choose your image file and click “OK“, your image will be added to the activity.
After adding an image set its constraints layout both vertically and horizontally otherwise it will
show an error.
XML Attributes of ImageView
android:src
To add the file path of the inserted image
(or) app:srcCompat
To add padding to the image from the left, right, top, or bottom
android:padding
of the view
activity_main.xml:
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="200dp"
android:layout_height="200dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/gfg_logo" />
</androidx.constraintlayout.widget.ConstraintLayout>
Note: All the attributes of the ImageView which are starting with app:layout_constraint are the
vertical and horizontal constraints to fix the image position in the activity. This is very necessary to
add the constraint to the ImageView otherwise, all the images will take the position (0, 0) of the
activity layout.
MainActivity File:
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);