As we use image from drawable in src
<ImageView
android:id="@+id/app_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/myImage"/>
Can we use here from assets folder?
<ImageView
android:id="@+id/app_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="myImage.jpg"/>