阻止超大屏幕android
我已经上传了一个apk文件到市场,支持1.6+。我注意到这个 api lvl 不支持从清单中阻止 xlarge 屏幕。如果我向市场上传 2 个 apk 文件,其中一个 1.6+ 和一个 2.3 或 3.0 会阻止 xlarge 屏幕,那么 xlarge 屏幕会被阻止吗?或者他们会选择 1.6+ 版本而不是 2.3/3.0 版本?
I have uploaded a apk file to the market which supports 1.6+. I noticed that this api lvl doesnt support to block xlarge screens from the manifest. If i upload 2 apk files to the market with one 1.6+ and one 2.3 or 3.0 that blocks xlarge screens, will the xlarge screens be blocked then. Or will they choose the 1.6+ version instead the 2.3/3.0 version ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,自 API 10 起就可以使用超大屏幕,因此您可以通过在
AndroidManifest
上调节android:maxSdkVersion="9"
方法来阻止它们。Well X-Large screens are available since API 10, So you can block them by regulate
android:maxSdkVersion="9"
method on yourAndroidManifest
.