Created
October 12, 2010 02:21
This file contains 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
<menu xmlns:android=”http://schemas.android.com/apk/res/android”> | |
<item android:id=”@+id/example_item | |
android:title="Example Item" | |
android:icon="@drawable/example_item_icon" /> | |
<group android:id="@+id/example_group"> | |
<item android:id=”@+id/example_item2 | |
android:title="Example Item 2" | |
android:icon="@drawable/example_item2_icon" /> | |
</group> | |
<item android:id=”@+id/example_submenu | |
android:title="Example Sub Menu" > | |
<menu> | |
<item android:id="@+id/example_submenu_item" | |
android:title="Example Sub Menu Item" /> | |
</menu> | |
</item> | |
</menu> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment