Android 3.0状态栏&清单中的 targetSdkVersion,菜单按钮
我需要在应用程序的某些屏幕上调暗 Honeycomb 的状态栏,因此我使用了 View.setSystemUiVisibility(int) 方法。但为了使其正常工作,我已将清单中的 targetSdkVersion 属性更改为 11。现在一切正常,但状态栏中的“菜单”按钮消失了,因此我无法访问某些选项。如何在保持 targetSdkVersion=11 的同时显示它?
I needed to dim Honeycomb's status bar on some screens of my app, so I used the View.setSystemUiVisibility(int) method. But in order for it to work I've changed the targetSdkVersion attribute to 11 in my manifest. Now everything works perfectly, but the "menu" button in the status bar has disappeared so I can't access some options. How do I show it while keeping targetSdkVersion=11?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不知道。您的菜单将出现在操作栏中。如果您删除了操作栏,请将其放回去,或者不使用选项菜单。
You don't. Your menu will appear in your action bar. If you removed the action bar, put it back, or do not use an options menu.