Reputation: 9226
recently i'm building an app and now i have some problem with layout and positioning. in fact i build my layout but when i test on bigger screen everything collapsed and look of my app is not good. what is the best way to produce UI?
Upvotes: 1
Views: 163
Reputation: 16191
Refer to Supporting multiple screens.
Also, while creating UI, try to keep the layout as RelativeLayout
and avoid hardcoding for layout_height
and layout_width
so that your UI will fit on all screens.
Happy Coding.
Upvotes: 2