样式操作项目背景ActionBarSherlock

时间:2012-07-09 14:43:44

标签: android android-actionbar actionbarsherlock

我一直在尝试创建自己的动作项目,但对我来说这是不可能的。

我正在尝试做的是创建自定义操作项布局(例如颜色背景),类似“拇指”操作栏。我只想为我的一项活动更改操作项。

enter image description here

我一直在玩动作菜单项的android:icon和android:actionLayout属性..但我一无所获。

实际上,我在StackOverflow中看到了另一个线程,但它对我没有帮助......

Building ActionMode with custom layout in ActionBarSherlock

styling ActionbarSherlock: textColor of the action-items

有什么想法吗?提前谢谢!

1 个答案:

答案 0 :(得分:12)

要覆盖ActionBarSherlock主题,您应该按照以下步骤进行操作:

values/abs__themes.xml图书馆项目中打开ActionBarSherlock。你看例如:

<style name="Theme.Sherlock" parent="Sherlock.__Theme">
    <!-- Action bar styles (from Theme.Holo) -->
    <item name="actionDropDownStyle">@style/Widget.Sherlock.Spinner.DropDown.ActionBar</item>
    <item name="actionButtonStyle">@style/Widget.Sherlock.ActionButton</item>
    <item name="actionOverflowButtonStyle">@style/Widget.Sherlock.ActionButton.Overflow</item>
    <item name="actionModeBackground">@drawable/abs__cab_background_top_holo_dark</item>
    <item name="actionModeSplitBackground">@drawable/abs__cab_background_bottom_holo_dark</item>
    <item name="actionModeCloseDrawable">@drawable/abs__ic_cab_done_holo_dark</item>
    <item name="actionBarTabStyle">@style/Widget.Sherlock.ActionBar.TabView</item>
    ...
    // Here is what you wanted
    <item name="actionBarItemBackground">@drawable/abs__item_background_holo_dark</item>
    ...

当您找到要自定义的项目(在您的情况下为actionBarItemBackground)时,您在项目中创建自己的themes.xml并添加其中:

<style name="Custom.Theme.Sherlock" parent="@style/Theme.Sherlock">
    <item name="actionBarItemBackground">@drawable/my__item_background_holo_dark</item>
</style>

这会覆盖默认Theme.Sherlock,设置自定义actionBarItemBackground

现在,您应该使用Theme.Sherlock而不是在活动中使用setTheme(R.style.Custom_Theme_Sherlock)。您可能还想覆盖其他两个主题(Theme.Sherlock.LightTheme.Sherlock.Light.DarkActionBar

还有一个提示,这里是ActionBarSherlock用于默认操作项背景的可绘制选择器(在holo_light中),它使用9-patch png drawables:

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
<item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abs__list_selector_disabled_holo_light" />
<item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abs__list_selector_disabled_holo_light" />
<item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abs__list_selector_background_transition_holo_light" />
<item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abs__list_selector_background_transition_holo_light" />
<item android:state_focused="true"                                                             android:drawable="@drawable/abs__list_focused_holo" />
<item                                                                                          android:drawable="@android:color/transparent" />


对于其他基本自定义,您可以使用此tool,它会为您生成样式。