阻止选项菜单关闭OptionItemSelected

时间:2017-03-21 15:22:53

标签: android xamarin.android android-optionsmenu

我有一个选项菜单,里面有一堆复选框。我想打开或关闭一堆它们,但每次检查一个菜单时菜单会自动关闭。我可以在选择项目后阻止菜单关闭吗? 当关闭发生时以及何时被阻止时,我也想控制

Activity.cs(不包括与选项菜单无关的所有内容)

public class Activity: ReactiveActivity<ViewModel>, IAppCompatCallback
{

    public override bool OnCreateOptionsMenu(IMenu menu)
    {
        var inflater = MenuInflater;
        inflater.Inflate(Resource.Menu.actions, menu);
        return true;
    }

    public override bool OnOptionsItemSelected(IMenuItem item)
    {
        if(item.ItemId == Resource.Id.action_settings) {
           StartActivity(typeof(SettingsActivity));
        }
        else {
           //Code changing the view based on selections
        }
        return base.OnOptionsItemSelected(item);
    }
}

actions.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:title="Choose options...">
  <menu>
    <group android:checkableBehavior="all">
      <item android:id="@+id/checkOption1"
            android:title="Option 1" 
            android:checked="true" />
      <item android:id="@+id/checkOption2"
            android:title="Option 2"
            android:checked="true" />
      <item android:id="@+id/checkOption3"
            android:title="Option 3"
            android:checked="true" />
      <item android:id="@+id/checkOption4"
            android:title="Option 4"
            android:checked="true" />
      <item android:id="@+id/checkOption5"
            android:title="Option 5"
            android:checked="true" />
      <item android:id="@+id/checkOption6"
            android:title="Option 6"
            android:checked="true" />
      <item android:id="@+id/checkOption7"
            android:title="Option 7"
            android:checked="true" />
    </group>
  </menu>
  </item>
  <item android:id="@+id/action_settings"
        android:title="@string/action_settings"
        android:showAsAction="never"/>
</menu>

2 个答案:

答案 0 :(得分:2)

  

我有一个选项菜单,里面有一堆复选框。我想打开或关闭一堆它们,但每次检查一个菜单时菜单会自动关闭。我可以在选择项目后阻止菜单关闭吗?我还想控制关闭何时发生以及什么时候被阻止。

对于菜单,我没有找到控制关闭行为的正确方法。

但是根据您的要求,Dialog是一个更好的选择:

  1. 删除action.xml中的子菜单,并为Choose Options...添加ID项目:

    <?xml version="1.0" encoding="utf-8"?>
    <menu xmlns:android="http://schemas.android.com/apk/res/android">
      <item android:title="Choose options..." android:id="@+id/chooseOption"></item>
      <item android:id="@+id/action_settings"
            android:title="Settings"
            android:showAsAction="never"/>
    </menu>
    
  2. DialogFragment一起制作AlertDialog

    public class MyDialogFragment:DialogFragment
    {
        string[] Items { get; set; }
        bool[] CheckedItems { get; set; }
    
        public MyDialogFragment(string[] items,bool[] checkedItems)
        {
            Items = items;
            checkedItems = checkedItems;
        }
        public override Dialog OnCreateDialog(Bundle savedInstanceState)
        {
            AlertDialog.Builder builder = new AlertDialog.Builder(this.Activity);
            builder.SetMultiChoiceItems(Items, CheckedItems, new DialogItemClickhandler());
            // Create the AlertDialog object and return it
            return builder.Create();
        } 
    }
    
    public class DialogItemClickhandler : Java.Lang.Object, IDialogInterfaceOnMultiChoiceClickListener
    {
        public void OnClick(IDialogInterface dialog, int which, bool isChecked)
        {
           //Item Click Implementation
        }
    }
    
  3. 当用户点击Choose Options...菜单项:

    时,打开对话框
    public class MainActivity : Activity
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView (Resource.Layout.Main);
        }
    
    
        public override bool OnCreateOptionsMenu(IMenu menu)
        {
            MenuInflater.Inflate(Resource.Menu.Actions, menu);
            return true;
        }
    
        public override bool OnMenuItemSelected(int featureId, IMenuItem item)
        {
            switch (item.ItemId)
            {
                case Resource.Id.chooseOption:
                    OpenDialogFragment();//Open the dialog
                    break;
                default:break;
            }
            return true;
        }
    
        private void OpenDialogFragment()
        {
    
            //init the Dialog items
            string[] items = new string[] {
                "Options 1",
                "Options 2",
                "Options 3",
                "Options 4",
                "Options 5",
                "Options 6"
            };
    
            bool[] checkedItems = new bool[] {
                true,
                false,
                true,
                false,
                true,
                false
            };
            MyDialogFragment dialog = new MyDialogFragment(items,checkedItems);
            dialog.Show(FragmentManager, "tag");
        }
    }
    

答案 1 :(得分:0)

我的情况是相同的,带有复选框的菜单项。

我没有办法阻止它关闭,但作为一个黑客,我一关闭就重新打开选项菜单,有一个问题,我无法弄清楚如何解决,虽然打开和关闭选项菜单有一个动画,我找不到一种方法来禁用它甚至环顾四周并找到可能的答案,都失败了。

在我们的应用中,我们创建了一个工具栏并将其设置为ActionBar,然后在您的代码中覆盖此方法并调用toolbar.showOverflowMenu()重新打开菜单:

/**
 * Handles the overflow menu closing event
 *
 * Due to a possible Android bug this is called twice!
 */
override fun onPanelClosed(featureId: Int, menu: Menu)
{
    if (something)    toolbar.showOverflowMenu()
}

您应该使用一些规则来避免菜单打开本身不停止,例如示例上的if语句。

在复选框后面的菜单上我添加了一个确定按钮,当用户点击它时,我更改了一个布尔值(示例中的内容)并避免再次重新打开菜单。