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

Popular posts from this blog

php - render data via PDO::FETCH_FUNC vs loop -

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

The canvas has been tainted by cross-origin data in chrome only -