2.2 中的屏幕限制
我需要限制我的应用程序仅在小屏幕、中屏幕和大屏幕上运行,但不能在超大屏幕上运行。我无法将其写入清单,因为构建是在 2.2 上进行的。
I need to limit my app to only run on screen small, medium and large screens but not xlarge. I can't write it in the manifest since the build is on 2.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
<兼容屏幕>
< /a>,如:你表现得好像你有选择一样。你没有。将项目的构建目标更改为 API 级别 9。
Use
<compatible-screens>
, such as:You act as though you have a choice. You do not. Change your project's build target to API Level 9.
您无需在清单文件中执行任何操作。
xlarge
标签是在 Android 2.3 中引入的,因此它与您的情况无关。已更新
如果您想确保 xlarge 设备无法使用它,您应该将其放入应用程序清单文件中,并将目标 API 更改为级别 9(Android 2.3,其中引入了该标签),并将最低 SDK 级别更改为某个级别更低,即 Android 2.2 的 8。
You won't need to do anything in the manifest file. The
xlarge
tag was introduced in Android 2.3, so it won't be relevant in your case.Updated
If you want to make sure that xlarge devices can't use it, you should put this in your application manifest file and change the target API to level 9 (Android 2.3, in which the tag was introduced) and the minimum SDK level to something lower, i.e. 8 for Android 2.2.