关于actionbarsherlock 4.0 RC 的操作菜单(溢出)

发布于 2025-01-08 22:34:06 字数 116 浏览 0 评论 0原文

我已经了解了如何使用 ActionBarsherlock 4.0 RC 在 ActionBar 上添加溢出操作菜单。但是,当我单击右上角的操作菜单按钮时,无法更改下拉弹出窗口中每个菜单项的背景颜色操作栏。 我该怎么办?

I've got how to add overflow action menu with actionbarsherlock 4.0 RC on the ActionBar.But I can not change the background color for each menu item in the drop-down popup when I click the action menu button on the top-right of the actionbar.
How can I do?

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

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

发布评论

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

评论(1

氛圍 2025-01-15 22:34:06

您将需要添加 / 属性
android:popupMenuStyle & android:dropDownListViewStyle
到你的主题。它们需要指向两种可以自定义溢出的样式。

<style name="MyTheme" parent="Theme.Sherlock.Light">
    <!-- Action bar styles -->
    <item name="android:popupMenuStyle">@style/NTCPopupMenu</item>
    <item name="android:dropDownListViewStyle">@style/NTCDropDownListView</item>
    <item name="popupMenuStyle">@style/NTCPopupMenu</item>
    <item name="dropDownListViewStyle">@style/NTCDropDownListView</item>
</style>

和样式

<!-- overflow menu -->
<style name="MyPopupMenu" parent="@style/Widget.Sherlock.Light.ListPopupWindow">
    <item name="android:popupBackground">@drawable/background</item>
</style>

<!-- style the items within the overflow menu -->
<style name="MyDropDownListView" parent="@style/Widget.Sherlock.Light.ListView.DropDown">
    <item name="android:divider">@drawable/divider</item>
    <item name="android:listSelector">@drawable/item_background</item>
</style>

此示例中有一件事与 ActionBarSherlock 网站上的示例不同,那就是我的主题有不同的父主题。请参阅此处的不同帖子:
ActionbarSherlock 溢出菜单样式问题

You will need to add / the properties
android:popupMenuStyle & android:dropDownListViewStyle
to your theme. They need to point to two styles where you can customize the overflow.

<style name="MyTheme" parent="Theme.Sherlock.Light">
    <!-- Action bar styles -->
    <item name="android:popupMenuStyle">@style/NTCPopupMenu</item>
    <item name="android:dropDownListViewStyle">@style/NTCDropDownListView</item>
    <item name="popupMenuStyle">@style/NTCPopupMenu</item>
    <item name="dropDownListViewStyle">@style/NTCDropDownListView</item>
</style>

and the styles

<!-- overflow menu -->
<style name="MyPopupMenu" parent="@style/Widget.Sherlock.Light.ListPopupWindow">
    <item name="android:popupBackground">@drawable/background</item>
</style>

<!-- style the items within the overflow menu -->
<style name="MyDropDownListView" parent="@style/Widget.Sherlock.Light.ListView.DropDown">
    <item name="android:divider">@drawable/divider</item>
    <item name="android:listSelector">@drawable/item_background</item>
</style>

There is one thing in this example that differs from the example on the ActionBarSherlock website and that is that my theme has a different parent. see different post here:
ActionbarSherlock overflow menu styling issue

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