How to resrtrict resolution in Android Manifest
Can anyone simply explain how restrict small resolution for my app. For example, I want that my app will开发者_如何学编程 be appropriate for QVGA , WVGA and devices with more resolutions?
Thanks in advance.
Add this to your manifest file:
<supports-screens android:smallScreens="false"
android:normalScreens="true" android:largeScreens="true"
/>
Hope this helps.
Please read this documentation it will help you . http://developer.android.com/guide/topics/manifest/supports-screens-element.html
精彩评论