So I’m working on scaling my application to different screen sizes. Right now Its optimized for a 10.1 inch screen but I’m working to get it to run on the kindle fire which has a 7 inch screen. I’m only using relative layouts. As of now my background scales perfectly but the image buttons ontop of the background don’t scale and I was wondering if there was a reason for this. Also I use margins to adjust the positions of my buttons, is this okay for scaling sizes?
So I’m working on scaling my application to different screen sizes. Right now Its
Share
You should always define in your manifest because the default values can change from one version to another.
But if you want to support xlarge screens then you’re stuck because this attribute was introduced in API level 9 (android 2.3). You have to create two different APKs, one for android versions >= 2.3 and the other for the older ones.
Since it’s a common issue, android provides a nice way to publish only one application on the market even if you use multiple APKs.