MenuPopupHelper cannot be used without an anchor

三世轮回 提交于 2019-12-08 17:37:47

问题


I want add PopupMenu to my MenuItem.

Menu.xml

 <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/date"
        app:showAsAction="ifRoom|withText"
        android:title="Date"
        android:visible="true"/>
    <item
        android:id="@+id/category"
        app:showAsAction="ifRoom|withText"
        android:title="Category"
        android:visible="true"/>
</menu>

When I click on MenuItem I call this code:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();

    if (id == R.id.filter_action) {
        showPopup(item.getActionView());
    }
    return super.onOptionsItemSelected(item);
}

private void showPopup(View v) {
    PopupMenu popup = new PopupMenu(getActivity(), v);
    MenuInflater inflater = popup.getMenuInflater();
    inflater.inflate(R.menu.filter_billing_menu, popup.getMenu());
    popup.show();
}

And I get this exception:

 java.lang.IllegalStateException: MenuPopupHelper cannot be used without an anchor

How I can fix it?


回答1:


I'm reading "internet" and I try this code:

showPopu(getActivity().findViewById(R.id.filter_action));

Instead

showPopup(item.getActionView());

It's works for me




回答2:


I believe a better (and simpler) approach in this case would be to define a submenu instead of creating a PopupMenu.

For example:

<item android:id="@+id/menu"
    android:title="menu" >
    <menu>
        <item android:id="@+id/item_in_submenu_1"
              android:title="subitem1" />
        <item android:id="@+id/item_in_submenu_2"
              android:title="subitem2" />
    </menu>
</item>



回答3:


My problem was that I had

<item android:id="@+id/menu_entry_to_show_popupmenu"
 app:showAsAction="ifRoom" />

and what I needed is

<item android:id="@+id/menu_entry_to_show_popupmenu"
 app:showAsAction="always" />

showAsAction="always" is needed. A menu entry hidden in the three dots (overflow menu) can't have a popupmenu anchored to it.

My full popupmenu setup function begins like this:

PopupMenu popup = new PopupMenu(getActivity(), getActivity().findViewById(R.id.menu_filter));
    popup.getMenuInflater().inflate(R.menu.filter_tasks, popup.getMenu());
    popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
    [...]
    popup.show();
}



回答4:


Change your this code:

app:showAsAction="ifRoom|withText"

to this:

android:showAsAction="ifRoom|withText"


来源:https://stackoverflow.com/questions/39346984/menupopuphelper-cannot-be-used-without-an-anchor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!