+ 2
How to make my app works on a different mobile_screen sizes???
I searched a lot for this answer but no one explain it well???
13 Answers
+ 11
You need to design UI so that screen size doesn't matter. For example, in my "Find a Cookie!" app, there is a "Sign In/Log Out" button at the top. I didn't give it a fixed size. It adjusts with the screen.
+ 9
Do you want to provide different UIs for different screen sizes?
+ 9
This link may help you
https://developer.android.com/training/multiscreen/screensizes.html
+ 4
like if you align your component to be centered, it will be centered no matter what !
else if by screen size you mean same device but in landscape then use fragments
according to my experience, using normal coding an app which works on phone, looks same on tablet
i suggest
1 get some more experience in android programming
2 if 1 already done please tell the specific issue !
+ 3
Use Css @media to style webpage for different screen size.
+ 2
What language does uour app run on?
+ 2
I made an application, when I connect it to normal screen size like in (galaxy 7 edge) it works great and all the text and buttons in the place I want.
But with screen like (Sony neu) all text places changed and some buttons go out of the screen because there is no space for them.
After searching, I know that there are 4 main size (small, Normal, large, xlarge)
+ 2
Ah, then I can't do much
+ 2
use bootstrap.
+ 1
Do you have any idea about layout in android?
+ 1
Do you have any idea about layout in android?
+ 1
I am working on Android studio, Java language
0
How can I design this UI please