I'm working on Android app Which will set layout for all devices. I have moto c plus and one plus 6t and i have to create two layout for those two mobile
So i create layout-normal(480dpi) and layout-large(600dpi) with textview as normal and large. But i get normal layout for both mobiles .
manifest file:
<supports-screens
android:resizeable="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
I didn't get the Multiple screen support concept clearly . help me to find it out