I am developing an App and want my UI to fit as much screens as possible. I have read the Android docs about designing for different screens. Though I have a question which is: There are some phones which are 5.0 inches and some 5.5 inches, please how do I use the sw- qualifier so that 5.0 and 5.5 design can be different. Or can I get a suggestion of the most commonly used sw- qualifiers, like how we had the small, normal and large, I have seen the ones given in the docs:
320dp: a typical phone screen.
480dp: a tweener tablet like the Streak (480x800 mdpi).
600dp: a 7” tablet (600x1024 mdpi).
720dp: a 10” tablet (720x1280 mdpi, 800x1280 mdpi, etc).
So which of these should I use for a 5.5 inch screen? Is there any single dp size that all the 5.5 inch screen can adjust to, so that if I am developing for 5.5 inch I just use it?
320dp: a typical phone screen.
and720dp: a 10” tablet (720x1280 mdpi, 800x1280 mdpi, etc).
are too generalized. My current phone (4.7" wide) has a 1280x720 resolution with a normalized density of 320 dpi (xhdpi). I encourage you to read Supporting multiple screens from the official docs. – Phantômaxx