0
votes

Iam developing an application for android device samsung galaxy nexus (1280*720) it comes under normal screen and xhdpi screen density, and for Samsung Nexus s(480*800) it comes under normal screen and hdpi screen density. So where to place the xml layouts for these devices.

1

1 Answers

0
votes

Try to use this in your android manifest file

 <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true"
         />