Kindle Fire:最小化屏幕底部的细长灰色条?

发布于 2024-12-22 20:10:12 字数 181 浏览 4 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦罢 2024-12-29 20:10:12

这是如何实现的?

对于请求全屏的活动,该栏将最小化(例如 上的 android:theme="@android:style/Theme.NoTitleBar.Fullscreen"清单中的 code> 元素)。

How is this accomplished?

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).

两仪 2024-12-29 20:10:12

当 Activity 处于全屏模式时,该栏会按照您想要的方式最小化。
在 Activity 的 onCreate 方法中,您可以按如下方式请求全屏模式:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

在调用 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:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

Do this right after calling super.onCreate()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文