This is the xml code. which is the best way to show low quality image in background given view?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/lowest_quality_image"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/lowest_quality_image"/>
<AppCompatImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/lowest_quality_image"/>
</LinearLayout>