I want to develop an application which is universal for tablet as well as for mobile. By creating xmls of different screen sizes i.e. small, normal, large, and extra large, does my purpose will be solved? I am not sure about this, please guide me to develop that application in every aspect. Thanks in Advance.
Asked
Active
Viewed 196 times
0
-
have a look at this http://stackoverflow.com/questions/12242111/application-skeleton-to-support-multiple-screen – Mohammed Azharuddin Shaikh Sep 15 '12 at 06:04
1 Answers
1
You should take a look at the designing for multiple screen sizes documentation.
Beyond that, you may not need layouts for each and every size. Sometimes, scaling a smaller/bigger layout up or down will suffice.
You will also be need to make sure you don't end up using features like cell phone calling, as most tablets don't support that.

Raghav Sood
- 81,899
- 22
- 187
- 195
-
Hi Raghav, I have gone through the documentation provided by you. The layouts for different sizes need to be provided(mentioned in the document). – Richa Laad Sep 17 '12 at 05:44
-
Actually, if you don't provide a layout for a specific size, it defaults to the closest layout provided. So if you have a large layout, but no xlarge, then xlarge devices with use the one from large. – Raghav Sood Sep 17 '12 at 09:21