android - showAsAction="never" not working on API 8 -
i have following menu:
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:id="@+id/action_refresh" android:icon="@drawable/ic_action_refresh" android:title="@string/action_refresh" android:titlecondensed="@string/action_refresh" app:showasaction="ifroom|withtext"/> <item android:id="@+id/action_logout" android:icon="@drawable/ic_action_undo" android:title="@string/signout" android:titlecondensed="@string/signout" app:showasaction="never"/> </menu>
the first menu shows fine, second 1 doesn't appear @ (does not appear 3 dots other menus).
i'm using appcompat.
what wrong?
on api >= 11 works fine.
that item should accessible via hardware menu key.
Comments
Post a Comment