How do I adjust my app to the screen size of multiple devices?

Asked

Viewed 3,184 times

1

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

  • Welcome, here’s how to ask a good question http://answall.com/tour

  • @Lucas-medina see if this link helps http://answall.com/questions/131295/problemas-com-o-layout-da-aplica%C3%A7%C3%A3o-em-diversos-celulares/134290#134290

1 answer

-1

I already did, I added this to Androidmanifest.xml

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

Worked perfectly!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.