操作栏,如 Google 文档和 picassa 工具应用程序中的操作栏

发布于 2024-11-26 06:49:16 字数 103 浏览 2 评论 0原文

我在一些前蜂窝应用程序中看到某种操作栏。例如在 Google 文档和 picassa 工具应用程序中。一些非谷歌应用程序也有相同的操作栏。例如推特。这个酒吧看起来很相似。有一些控件或小部件吗?

I see some kind of action bars in some pre-honeycomb apps. For example in Google docs and picassa tool apps. Some non-google apps have the same action bar too. For example twitter. This bars looks similar. Is there some control or widget?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

还如梦归 2024-12-03 06:49:16

操作栏重复使用选项菜单中的项目,并在 3.0 SDK 中引入。您可以按照此处的说明在您的应用中启用它。

对于“pre-honeycombe”应用程序,您仍然需要根据 3.0 SDK 进行构建;将清单中的 targetSdkVersion 值增加到“11”,并将 minSdkVersion 设置为您支持的最低 Android 版本。例如:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="11" />

The Action Bar re-uses items from the Options menu and was introduced in the 3.0 SDK. You enable it in your app by following the instructions here.

For a "pre-honeycombe" app you will still need to build against the 3.0 SDK; increase the targetSdkVersion value in your manifest to "11" and set the minSdkVersion to the lowest Android version you are supporting. For example:

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