开发者

How to publish Android app into market for particular screen resolution?

开发者 https://www.devze.com 2023-02-03 16:06 出处:网络
I have developed one android application for the devices with exact screen size of 480x800. Now i have no idea about how to publish this app for this particular screen size. If i filter by usingtag in

I have developed one android application for the devices with exact screen size of 480x800. Now i have no idea about how to publish this app for this particular screen size. If i filter by using tag in manifest , it can accept both 480x800 (WVGA800)and 480x854 (开发者_如何学编程WVGA854). But my app is suitable only for WVGA800.


You should use "dp" (density independent pixel) instead of "px", so your app will fit on any screen size/density.

Also, take a look into the View's layout_weight XML property. It will allow you to set a view's size as 100%, for instance.


This isn't possible. What is your app doing to make it only suitable for a single screen resolution?

0

精彩评论

暂无评论...
验证码 换一张
取 消