Android: Keep the options menu (OptionsMenu)

3

How can I continue to show the android options menu when I press any of the menu items. In other words I do not want the menu to be hidden when I press any of the elements.

    
asked by Jose Luis Arrioja Zamudio 28.12.2016 в 16:51
source

1 answer

2

You can always reopen the menu when the menu is going to close:

@Override
public void onOptionsMenuClosed(Menu menu) {
    openOptionsMenu();
}

If this does not work you can also try to do it with the onMenuVisibilityChanged .

    
answered by 28.12.2016 в 17:25