如何更改操作栏中的选项菜单图标?

发布于 2024-12-21 02:30:14 字数 119 浏览 3 评论 0原文

在 Honeycomb 上,当隐藏选项(不是 ifRoom)时,它们会显示在选项菜单的微调器中。 我只是想知道如何更改此选项菜单的图标(最右边)。 默认情况下,ICS 上的图标只有三行和 3 个点。

谢谢 !

On Honeycomb, when the options are hidden (not ifRoom), they are displayed in a Spinner in an option menu.
I simply would like to know how to change the icon of this option menu (furthest to the right).
By default, the icon is just three lines and 3 dots on ICS.

Thanks !

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

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

发布评论

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

评论(2

-残月青衣踏尘吟 2024-12-28 02:30:14

从您的 android sdk 安装中查看更多属性,位于platforms/android-XX/data/res/values/style.xml

以下是菜单溢出操作按钮样式定义:

<style name="Widget.Holo.ActionButton.Overflow">
    <item name="android:src">@android:drawable/ic_menu_moreoverflow_holo_dark</item>
    <item name="android:background">?android:attr/actionBarItemBackground</item>
    <item name="android:contentDescription">@string/action_menu_overflow_description</item>
</style>

See more attributes from your android sdk installation, in platforms/android-XX/data/res/values/style.xml

Here is menu overflow action button style definition:

<style name="Widget.Holo.ActionButton.Overflow">
    <item name="android:src">@android:drawable/ic_menu_moreoverflow_holo_dark</item>
    <item name="android:background">?android:attr/actionBarItemBackground</item>
    <item name="android:contentDescription">@string/action_menu_overflow_description</item>
</style>
飘过的浮云 2024-12-28 02:30:14

这是官方文档告诉你如何将操作栏自定义到最上面。

自定义操作栏

Here is the officialy documentation telling you how to customize the action bar to the up most.

Customizaing the action bar

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