Created
December 29, 2015 18:00
-
-
Save akki777-zz/a02990fba93b552ad27b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | |
<group android:checkableBehavior="single"> | |
<item android:title="Account"> | |
<menu> | |
<item | |
android:id="@+id/nav_settings" | |
android:icon="@drawable/ic_menu_share" | |
android:title="Settings" /> | |
<item | |
android:id="@+id/nav_logout" | |
android:icon="@drawable/ic_menu_send" | |
android:title="Logout" /> | |
</menu> | |
</item> | |
<item | |
android:id="@+id/nav_help" | |
android:icon="@drawable/ic_menu_camera" | |
android:title="Help" /> | |
<item | |
android:id="@+id/nav_about" | |
android:icon="@drawable/ic_menu_gallery" | |
android:title="About" /> | |
</group> | |
</menu> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment