在菜单项单击上创建上下文菜单

时间:2016-12-29 01:10:16

标签: android toolbar appbar android-contextmenu

我处境很奇怪,我试图到处搜寻,但我找不到任何有用的东西。可能是我跟着糟糕的设计。但这是我的情况:

我的应用中有AppBar,我在应用栏上添加了ActionButton,我们通常会这样做。现在,我想在用户点击app栏的任何操作按钮时显示上下文菜单。

例如:如果我在应用栏上设置了按钮,如果用户点击该按钮,那么我想显示具有多个选项的上下文菜单。 我知道如何创建上下文菜单和处理上下文菜单项单击,但我不知道如何从操作按钮单击转移控件,这将导致显示ContextMenu

这是我的代码:

//inflating context menu which will display when user clicks app bar button example like setting

    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
        super.onCreateContextMenu(menu, v, menuInfo);
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.context_menu_sort, menu);
    }

//handling context menu item clicks
    @Override
    public boolean onContextItemSelected(MenuItem item) {
        return super.onContextItemSelected(item);
    }

但我不知道如何处理将显示上下文菜单的应用栏按钮点击:

//Below code is to handle app bar item clicks

    public boolean onOptionsItemSelected(MenuItem item) {
        int id = item.getItemId();
        if (mDrawerToggle.onOptionsItemSelected(item)) {
            return true;
        }

        //handling the menu clicks on menu.xml
        switch (id){
//on below action_add click i want to display context menu
            case R.id.action_add:
//not sure what to code here
                break;
}

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

如果我理解你,你想要显示一个子菜单? 然后,您需要在menu中添加R.menu.context_menu_sort标记。

像这样:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/file"
          android:title="@string/file" >
        <!-- "file" submenu -->
        <menu>
            <item android:id="@+id/create_new"
                  android:title="@string/create_new" />
            <item android:id="@+id/open"
                  android:title="@string/open" />
        </menu>
    </item>
</menu>

有关更多信息,请参阅https://developer.android.com/guide/topics/ui/menus.html