i have a problem in my project,in this project includes all layout folders for multi size application .
layouts:
layout/fragment_second.xml
layout-large/fragment_second.xml/
layout-xlarge/fragment_second.xml
layout-small/fragment_second.xml
and a image copied in all mipmap folders:
mipmap-hdpi/about size:106*106 px
mipmap-mdpi/about size:68*68 px
mipmap-xhdpi/about size:130*130 px
mipmap-xxhdpi/about size:210*210 px
mipmap-xxxhdpi/about size:260*260 p
load in imageview:
<ImageView
android:id="@+id/img_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/about"
android:layout_centerHorizontal="true" />
problem is: dont use other images for diffrent sizes and just use hdpi folder
I tested app in many devices and i could not resolve it
Manifest:
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
How i can fix this problem
Thank you