| <?xml version="1.0" encoding="utf-8"?> |
| |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| android:orientation="vertical" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent"> |
| |
| <ImageView |
| android:id="@+id/first" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:src="@drawable/normal_src" |
| app:srcCompat="@drawable/compat_src" /> |
| |
| <ImageView |
| android:id="@+id/second" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| app:srcCompat="@drawable/compat_src_2" /> |
| |
| <NotAImageView |
| android:id="@+id/third" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:src="@drawable/normal_src_3" |
| app:srcCompat="@drawable/compat_src_3" /> |
| |
| </LinearLayout> |