diff options
author | Joe Robinson <joe@lc8n.com> | 2014-08-02 18:02:08 +0100 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2014-08-02 18:02:08 +0100 |
commit | 848cfa51b7de694fbcef75b41818b33ed81b7359 (patch) | |
tree | e57a77a6e5d38e053af9722384a0e5d638f565f9 /app/src/main/res/menu |
Initial commit of Android Studio project
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r-- | app/src/main/res/menu/global.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/menu/home_screen.xml | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/app/src/main/res/menu/global.xml b/app/src/main/res/menu/global.xml new file mode 100644 index 0000000..f3b10b6 --- /dev/null +++ b/app/src/main/res/menu/global.xml @@ -0,0 +1,6 @@ +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:id="@+id/action_settings" + android:title="@string/action_settings" + android:orderInCategory="100" + android:showAsAction="never" /> +</menu> diff --git a/app/src/main/res/menu/home_screen.xml b/app/src/main/res/menu/home_screen.xml new file mode 100644 index 0000000..343d4e6 --- /dev/null +++ b/app/src/main/res/menu/home_screen.xml @@ -0,0 +1,11 @@ +<menu xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:context=".HomeScreen" > + <item android:id="@+id/action_example" + android:title="@string/action_example" + android:showAsAction="withText|ifRoom" /> + <item android:id="@+id/action_settings" + android:title="@string/action_settings" + android:orderInCategory="100" + android:showAsAction="never" /> +</menu> |