For some reason, when testing on my Motorola Xoom with Ice Cream Sandwich, the App Icon in the Action Bar is not clickable, even though I have implemented an event handler. This only occurs after changing the targetSdkVersion to 15. If it is 13 it is still clickable, even on ICS. Why is this happening and how can I make it clickable like a button? I searched the documentation and couldn't find anything.

Thank you.

UPDATE: Here is my code:

AndroidManifest.xml:

...
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15" />
<application android:icon="@drawable/icon" android:label="@string/app_name"
    android:theme="@style/android:Theme.Holo.Light">
...

BaseActivity.java (my activities all inherit from this class:

...
@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case android.R.id.home:
            // app icon in action bar clicked; go home
            Intent intent = new Intent(this, MainActivity.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            startActivity(intent);
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}
...
link|improve this question

Tested on the emulator? Is it clickable there? – Leandros Jan 29 at 3:15
Just tested it on the emulator, and it's the same as the Xoom; it's not clickable when targetSdkVersion is 15, only when it's 13 (I didn't try 14, but it shouldn't matter). – Anonymous Jan 29 at 3:21
Please include your code. – Leandros Jan 29 at 3:26
@Leandros Done. Has anyone else experienced this? – Anonymous Jan 29 at 3:39
feedback

2 Answers

up vote 5 down vote accepted

I found it in the documentation at http://developer.android.com/guide/topics/ui/actionbar.html:

Note: If you're using the icon to navigate to the home activity, beware that beginning with Android 4.0 (API level 14), you must explicitly enable the icon as an action item by calling setHomeButtonEnabled(true) (in previous versions, the icon was enabled as an action item by default).

link|improve this answer
feedback

Don't use onOptionsItemSelected, instead use the ActionBar.OnNavigationListener and the method onNavigationItemSelected.



Reference: http://developer.android.com/reference/android/app/ActionBar.OnNavigationListener.html and http://developer.android.com/reference/android/app/ActionBar.html

link|improve this answer
Check the official guide at developer.android.com/guide/topics/ui/actionbar.html#Home which disagrees :( I copied directly from it. – Anonymous Jan 29 at 4:09
Wuahaha. Thats shows how epic the android guide is. Trust me, try it on my way. :) – Leandros Jan 29 at 4:13
I tried what you said and it didn't work – Anonymous Jan 31 at 21:27
feedback

Your Answer

 
or
required, but never shown

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