Skip to content

Instantly share code, notes, and snippets.

@mohitsehgal
Created June 18, 2015 11:24
Show Gist options
  • Save mohitsehgal/6b0a232b13c7fbcfc390 to your computer and use it in GitHub Desktop.
Save mohitsehgal/6b0a232b13c7fbcfc390 to your computer and use it in GitHub Desktop.
Sample Menu Resource Layout for Material Design Navigation Drawer
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" >
<item android:id="@+id/menu_home"
app:showAsAction="withText"
android:icon="@mipmap/ic_home"
android:title="Home"/>
<item android:id="@+id/menu_event"
app:showAsAction="withText"
android:icon="@mipmap/ic_events"
android:title="Events"/>
<item android:id="@+id/menu_devices"
app:showAsAction="withText"
android:icon="@mipmap/ic_devices"
android:title="Devices"/>
</menu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment