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

I have this problem with the Android ActionBarCompat project: On emulators with Android 4.0 the click on the app icon doesn't cause any onOptionsItemSelected event, whereas it works on all other OS versions.

Any input is greatly appreciated!

share|improve this question

1 Answer

up vote 19 down vote accepted

Are you seeing any touch feedback from the app icon? (Does it glow when you press it?)

Since many activities do not use the action bar home button, in apps that target API 14+ running on Android 4.0 it is disabled by default. (This is so that users don't try pressing it, see it glow, and wonder why nothing happened.) Apps that want to use this should call ActionBar#setHomeButtonEnabled(true).

We should probably revise the ActionBarCompat sample to surface this more clearly. One simple way to get you up and running would be to modify ActionBarHelperICS.java and add the following:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mActivity.getActionBar().setHomeButtonEnabled(true);
}

In an app where you want more control over turning this on and off you would want to make further changes.

share|improve this answer
nice thanks that is right on. – mikedroid Dec 1 '11 at 16:15
1  
Just to note, this is mentioned in the docs, it's just easy to miss since it's a "Note". – srunni Jul 31 '12 at 0:35
It is not working for me. Adding this code I get error in Eclipse. Multiple markers at this line - Call requires API level 14 (current min is 4): android.app.ActionBar#setHomeButtonEnabled fixed by adding supress new api – tobias Sep 27 '12 at 0:03
What if minSdkVersion must be 8? – l33t May 3 at 21:40

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.