无法为“Galaxy Tab”制作全屏应用程序(安卓设备)
谁能告诉我,即使我在 AndroidManifest.xml 文件中设置了下面列出的标签,为什么我无法使我的应用程序在“Galaxy Tab”(Android 设备)上全屏运行?我正在使用 2.3 Api 级别 9 开发当前的应用程序。
这是我在 Manifest.xml 文件中定义的标签:
<supports-screens android:smallScreens="true"
android:largeScreens="true" android:xlargeScreens="true"
android:normalScreens="true" android:anyDensity="true"/>
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="9" android:maxSdkVersion="9" />
Can anyone tell me, even though I set the below listed tags in my AndroidManifest.xml file, why I can't make my application run as full screen on the "Galaxy Tab" (Android device)? I am developing my current application with 2.3 Api level 9.
Here is the tag I have defined in my Manifest.xml file :
<supports-screens android:smallScreens="true"
android:largeScreens="true" android:xlargeScreens="true"
android:normalScreens="true" android:anyDensity="true"/>
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="9" android:maxSdkVersion="9" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您正在清单文件中使用,uses-sdk android:minSdkVersion=”3”。
如果你想在 Galaxy 选项卡中将其显示为全屏。使用大于3的minSdkVersion
最好使用
如果您有任何问题请告诉我。
谢谢。
i think you are using, uses-sdk android:minSdkVersion="3" in your manifest file.
if u want to show it as full screen in Galaxy tab. Use the minSdkVersion greater than 3
its better to use
Let me know if u have any issues.
Thanks.
使目标sdk为11级或以上,因为honeycomb从11级开始。
make the target sdk as level 11 or above because honeycomb starts with level 11.
将其添加到 AndroidManifest.xml 中的应用程序元素中
Add this to your application element in AndroidManifest.xml