Android: supports-screens is ignored by Android Market

佐手、 提交于 2019-12-11 16:11:44

问题


I specifically turned off support for large and x-large screens in the manifest file for my app before I uploaded it to the Android Market because the code path for these is broken (I'm currently working on a 'Tablet' version of my app). I know it's broken, that's why I turned off support. So why oh why is the Android Market ignoring this in my manifest:

<supports-screens android:smallScreens="true"
   android:normalScreens="true"
   android:largeScreens="false"
   android:xlargeScreens="false" />

and letting people with large screen devices see the app?


回答1:


that just tells the device to show the app in compatibility mode. It doesn't prevent the app from running.

http://developer.android.com/guide/topics/manifest/supports-screens-element.html

"Beware that setting it "false" will generally enable screen compatibility mode."



来源:https://stackoverflow.com/questions/8031379/android-supports-screens-is-ignored-by-android-market

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