How do I adjust my application to the screen size of multiple devices? [duplicate]

1

Good afternoon, I'm developing an application in Android Studio and it fits well in my Motorola Moto X 2nd Generation. But in my Samsung Galaxy Note 3, Motorola Moto E and Motorola Moto G, it gets all messy, it's a mess! I would like to know how to make it fit on all the devices I want. Please specify as well as I do, as I am new to Android Studio.

    
asked by anonymous 23.05.2015 / 20:21

1 answer

-1

I already have, I added this in AndroidManifest.xml

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

It worked perfectly!

    
23.05.2015 / 21:33