Multi Device Screen Size

omoba

Active Member
Licensed User
Longtime User
Hi,

Probably this has been answered before but couldnt find answers. I want to build apps for devices with different screen sizes.

Is it possible to avoid re-coding for the different screen sizes every time an I design a new app.

Tnx
 

Informatix

Expert
Licensed User
Longtime User
Hi,

Probably this has been answered before but couldnt find answers. I want to build apps for devices with different screen sizes.

Is it possible to avoid re-coding for the different screen sizes every time an I design a new app.

Tnx

There are hundreds of threads and tutorials about this. Use the search engine with keywords like "scale" or "multiple screens".
 
Upvote 0

cammel8

Member
Licensed User
Longtime User
Hi,

Probably this has been answered before but couldnt find answers. I want to build apps for devices with different screen sizes.

Is it possible to avoid re-coding for the different screen sizes every time an I design a new app.

Tnx

One of the biggest ways I keep from having to recode for different sizes is by never using exact numbers. Instead of putting something in the middle of the screen using say 150 dip I use 50%y. By always arranging my views and such by percentages it usually works out pretty well. There are some minor tweaks needed every so often but for the most part works across many devices because the overall length and width are proportionate. course there will always be exceptions to the rule but it works for me for the most part. By never setting anything in stone it seems more fluid across multiple devices.
 
Upvote 0
Top