• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Can you change menu order based on user action?

nirVrana

Lurker
Is it possible to change the order of the menu items based on the user choosing a particular preference?

Is it possible for the user to re-order menu items so their most used options appear as icons when the menu button is pushed?
 
You don't need to inflate XML to generate the menu, you can do it in code. You should be fine to check preferences in that code.


Example of creating menu without inflating xml
Code:
    static final int MENU_ADD_WIDGET = 1;
    static final int MENU_CLEAR_ALL = 2;
    static final int MENU_QUIT = 3;

    public boolean onCreateOptionsMenu(Menu  menu) {
        menu.add(0, MENU_ADD_WIDGET, 0, "Add Widget");
        menu.add(1, MENU_CLEAR_ALL, 0, "Clear all");
        menu.add(2, MENU_QUIT, 0, "Quit");
        return true;
    }
 
Back
Top Bottom