How To Publish Android App Into Market For Particular Screen Resolution?
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 f
Solution 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.
Post a Comment for "How To Publish Android App Into Market For Particular Screen Resolution?"