How to import image as asset and show it in ImageView (as static image) in your Android App?

In this video it shows the steps to import an image as an asset in Android Studio environment and then display it on an image view in your Android App.

I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com

Complete source code and other details:

<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<ImageView
android:id="@+id/imageView"
android:layout_width="305dp"
android:layout_height="289dp"
android:layout_marginStart="52dp"
android:layout_marginTop="140dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@mipmap/flower" />
</androidx.constraintlayout.widget.ConstraintLayout>

Asset included as shown below:

To import an Image Asset:

Leave a Reply