Skip to content

Instantly share code, notes, and snippets.

@ckashby
Created August 4, 2014 19:25
Show Gist options
  • Save ckashby/5c2f9a5f89e765a2e922 to your computer and use it in GitHub Desktop.
Save ckashby/5c2f9a5f89e765a2e922 to your computer and use it in GitHub Desktop.
Action Bar 2 menu items
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/miCompose"
android:icon="@drawable/ic_compose"
android:showAsAction="ifRoom"
android:title="Compose">
</item>
<item
android:id="@+id/miProfile"
android:icon="@drawable/ic_profile"
android:showAsAction="ifRoom|withText"
android:title="Profile">
</item>
</menu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment