Reputation: 1
i need that my app Android will be supported by 2 devices phone and tablet .
i can find library to integer in my app and supported all screen size.
Thanks
Upvotes: -1
Views: 24
Reputation: 577
I am assuming you want to support multiple screen sizes for your app. You can refer to this guide from Android Developers. Tl;dr you should make your layouts as flexible as possible. That includes but not limited to
Also for a tablet, you must design an alternative layout which can take advantage of the larger screen in landscape mode
Upvotes: 0