Kindle Fire:最小化屏幕底部的细长灰色条?
在 Kindle Fire 上运行的应用程序底部,有一个细长的灰色条,其中包含“主页”按钮、“后退”按钮、“菜单”按钮和“搜索”按钮。
我见过一些应用程序在 X 秒未使用后自动最小化此灰色条(以这种方式,它甚至更细,并且只有一个可见的按钮:最大化按钮)。这是如何实现的?对于我的应用程序,灰色条在应用程序的整个持续时间内保持最大化。
At the bottom of an app running on Kindle Fire, there's a slim gray bar with the Home button, Back button, Menu button, and Search button.
I've seen some apps minimize this gray bar automatically after X seconds of no use (in such a way that it's even slimmer, and there's only one button visible: the maximize button). How is this accomplished? For my app, the gray bar stays maximized throughout the entire duration of the app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于请求全屏的活动,该栏将最小化(例如
上的android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
清单中的 code> 元素)。The bar will minimize for activities that request to have the full screen (e.g.,
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
on the<activity>
element in the manifest).当 Activity 处于全屏模式时,该栏会按照您想要的方式最小化。
在 Activity 的 onCreate 方法中,您可以按如下方式请求全屏模式:
在调用 super.onCreate() 后立即执行此操作
The bar is minimized like you want when the activity is in full-screen mode.
In your activity's onCreate method you can request full-screen mode as follows:
Do this right after calling super.onCreate()