无论上下文模式是否打开,样式操作栏的项目都不同?

时间:2013-12-18 13:46:36

标签: android android-actionbar android-theme android-styles android-contextmenu

我的用例是:默认操作栏显示蓝色背景,我希望按钮在按下时变为绿色;另一方面,上下文操作栏是绿色的,我希望按钮在按下时变为蓝色。 (一种反色)

  • 默认操作栏:蓝色背景,绿色叠加(按下状态)
  • 上下文操作模式:绿色背景,蓝色叠加(按下 状态)

我已经有了选择器,我可以在我的主题中设置 android:actionBarItemBackground 来设置两种模式的drawable。我也可以设置关闭按钮设置 android:actionModeCloseButtonStyle 中的样式,它工作正常。

我如何设置其他按钮的样式呢?

谢谢大家, 吉尔

1 个答案:

答案 0 :(得分:2)

正如我在评论中所说,MenuItems的观点无法访问,因此您没有任何直接选项可以访问它们。为MenuItems替换选择器的一种方法是使用MenuItems,将操作视图设置为ImageViews以保留正常图标并更改ImageViews的选择器。以下示例:

<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:id="@+id/menuFirst"
    android:showAsAction="always"
    android:actionLayout="@layout/image_menu_layout"/>
</menu>

<!-- image_menu_layout.xml -->
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="match_parent"
       android:layout_height="match_parent" 
       style="@style/Widget.ActionButton"/>

ActionBar部分的代码:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.your_menu, menu);
    // call this for any menu item that you might have
    setUpMenuItem(menu, R.id.menuFirst, false, null);
    return super.onCreateOptionsMenu(menu);
}

/**
 * This methods set up the MenuItems.
 * 
 * @param menu the menu reference, this would refer either to the menu of the ActionBar or 
 *             the menu of the ActionMode
 * @param itemId the id of the MenuItem which needs work
 * @param onActionMode flag to indicate if we're working on the ActionBar or ActionMode
 * @param modeRef the ActionMode reference(only when the MenuItem belongs to the ActionMode, 
 *                null otherwise)
 */
private void setUpMenuItem(Menu menu, int itemId, final boolean onActionMode,
                           final ActionMode modeRef) {
    final MenuItem menuItem = menu.findItem(itemId);
    ImageView itemLayout = (ImageView) menuItem.getActionView();
    itemLayout.setBackgroundResource(onActionMode ? R.drawable.selector_for_actionmode : R
            .drawable.selector_for_actionbar);
    itemLayout.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // for simplicity, wire up the normal selection callbacks(if possible, 
            // meaning the Activity implements the ActionMode.Callback)
            if (onActionMode) {
                onActionItemClicked(modeRef, menuItem);
            } else {
                onOptionsItemSelected(menuItem);
            }
        }
    });
}

ActionMode部分的代码:

@Override
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
    getMenuInflater().inflate(R.menu.actiomode_menu, menu);
    // call this for any menu item that you might have
    setUpMenuItem(menu, R.id.menu_item_from_actionmode, true, mode);
    return true;
} 

此方法还可以避免在使用ActionBar时处理/保持ActionMode / Activity的状态。