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

核能气质少年 提交于 2019-12-24 00:53:25

问题


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.


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/4647116/how-to-publish-android-app-into-market-for-particular-screen-resolution

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!