Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Within my apps I often enable/disable menu entries and do make them visible from onPrepareOptionsMenu.

Today I started to add the android:showAsAction menu attribute to some of my Android 2.x apps to show menu entries used most on the ActionBar.

The ActionBar does not reflect the enable/disable and visibility immediately. I need to click on the menu dropdown on the right to see this change happen.

Ok, I do understand that the menu fires onPrepareOptionsMenu. But what do I need to do to refresh the ActionBar. I think this change needs to be applied from within onOptionsItemSelected but I don't know what I should call.

Thanks in advance.

Here's the menu:

<item
    android:icon="@drawable/ic_menu_mapmode"
    android:id="@+id/men_mapview"
    android:showAsAction="ifRoom|withText"
    android:title="@string/txt_mapview" />

<item
    android:icon="@drawable/ic_menu_mapmode"
    android:id="@+id/men_satelliteview"
    android:showAsAction="ifRoom|withText"
    android:title="@string/txt_satelliteview" />

Here's the onPrepareOptionsMenu:

@Override
public boolean onPrepareOptionsMenu(final Menu menu) {
    MenuItem menuItemMapView = menu.findItem(R.id.men_mapview);
    MenuItem menuItemSatelliteView = menu.findItem(R.id.men_satelliteview);

    if (mapView.isSatellite()) {
        menuItemMapView.setEnabled(true).setVisible(true);
        menuItemmenuItemSatelliteView.setEnabled(false).setVisible(false);
    } else {
        menuItemMapView.setEnabled(false).setVisible(false);
        menuItemmenuItemSatelliteView.setEnabled(true).setVisible(true);
    }

    return super.onPrepareOptionsMenu(menu);
}

Here's the onOptionsItemSelected

@Override
public boolean onOptionsItemSelected(final MenuItem menuItem) {
    switch (menuItem.getItemId()) {
        case R.id.men_mapview:
            mapView.setSatellite(false);
            mapView.setStreetView(true);
            mapView.invalidate();

            invalidateOptionsMenu(); // This works on Android 3.x devices only
            return true;
        case R.id.men_satelliteview:
            mapView.setSatellite(true);
            mapView.setStreetView(false);
            mapView.invalidate();

            invalidateOptionsMenu(); // This works on Android 3.x devices only
            return true;
    }

    return super.onOptionsItemSelected(menuItem);
}

EDIT: If I add invalidateOptionsMenu this works on Android 3.x apps but crashes on Android 2.x devices because of a missing method. What's the desired way to do it right.

share|improve this question

3 Answers

up vote 25 down vote accepted

My method of choice is to create a helper class. For example:

class VersionHelper
{
    static void refreshActionBarMenu(Activity activity)
    {
        activity.invalidateOptionsMenu();
    }
}

Now in your code above, replace invalidateOptionsMenu(); with:

if (Build.VERSION.SDK_INT >= 11)
{
    VersionHelper.refreshActionBarMenu(this);
}

Credit for this method goes to CommonsWare (search for HoneycombHelper, and check out his books - highly recommended)

share|improve this answer
what's the differnece between your answer and simply putting the version check around his initial call of if (Build.VERSION.SDK_INT >= 11) { invalidateOptionsMenu(); }? you could possibly stick the version check in the versionHelper method call? – towpse Aug 24 '12 at 17:17
3  
@towpse The reason he has the helper class structured as it is is to avoid a crash due to non-backward compatibility. The method invalidateOptionsMenu() only exists in API 11 (honeycomb) and up. So if your app is to run on anything lower than API 11 it will crash. To avoid this you wrap the method in question in another static method (e.g. refreshActionBarMenu()) and only call this static method if you're running on API>11 (thus the version check before you call the static method). This works because the VersionHelper class isn't loaded until you actually use it. – Turbo Aug 31 '12 at 21:18
@Turbo ok cool, thanks for the explanation , so what would one do in the else case? not update the menu at all or what's the older way of doing the menu item update if user is running an older OS? – towpse Sep 4 '12 at 20:16
@towpse I'm actually figuring out that situation right now. I believe that in the else case for this type of situation you should just do nothing. This is because the older way (pre API11) of doing the menu update is in the method onPrepareOptionsMenu which automatically gets called every time the user opens the menu. So to handle the older OS and the newer API>11 ones, you put the code for the menu change in onPrepareOptionsMenu (this is to handle old OS), then to handle newer OS you call invalidateOptionsMenu when an event occurs that would trigger a menu change. – Turbo Sep 4 '12 at 21:59

save a reference to the menu and call:

this.menu.clear();
this.onCreateOptionsMenu(this.menu);
share|improve this answer

Based on "Klaasvaak" answer above. I am using its subMenus. This works for me :

// Declare and save the menu as global, so it can be called anywhere.
Menu absTopSubMenus;

public boolean onCreateOptionsMenu(Menu menu) {

absTopSubMenus = menu;  // Used for re-drawing this menu anywhere in the codes.

// The remainder of your code below
}

Then, to re-draw this, just call :

// Redraw the top sub-menu
absTopSubMenus.clear();
onCreateOptionsMenu(absTopSubMenus);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.