如何在 Android 3.0 (Honeycomb) 中调暗系统栏?
如何在 Android 3.0 (Honeycomb) 中以编程方式调暗系统栏?
How do I programatically dim the system bar in Android 3.0 (Honeycomb)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用以下代码:
Try using the following code:
您可以使用 SYSTEM_UI_FLAG_LOW_PROFILE 将其调暗,但当用户触摸该栏时它会出现。但你可以禁用它,除了主页。
将其添加到清单中。
在 onCreate() 内部
,其中 home_view 是 xml 文件的父视图。
您无法捕获主页事件,唯一可以做的就是为您的应用程序提供主页类别并让用户选择。
you can dim it using SYSTEM_UI_FLAG_LOW_PROFILE but it will appear when user touch the bar. But you can disable it except home.
add this in manifest.
inside onCreate()
where home_view is the parent view of xml file.
you can't capture the home event, the only thing is you can do is to give your application home category and let the user choose.