aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/src/main/res/menu
diff options
context:
space:
mode:
authorAndrew Lehmer <alehmer@google.com>2017-04-26 14:58:59 -0700
committerAndrew Lehmer <alehmer@google.com>2017-04-26 14:58:59 -0700
commite76dcf96b0c451e46cddfa695de8feeb92533937 (patch)
treeed9a45d409f988f517e6c3f3a685cbf81ac45a5a /android/WALT/app/src/main/res/menu
parentbcf013dda8ffac9fd76937be6441b44bb9f3586f (diff)
downloadwalt-e76dcf96b0c451e46cddfa695de8feeb92533937.tar.gz
Import google/walt
Cloned from https://github.com/google/walt.git without modification. Bug: 36896528 Test: N/A
Diffstat (limited to 'android/WALT/app/src/main/res/menu')
-rw-r--r--android/WALT/app/src/main/res/menu/menu_main.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/android/WALT/app/src/main/res/menu/menu_main.xml b/android/WALT/app/src/main/res/menu/menu_main.xml
new file mode 100644
index 0000000..6333e6d
--- /dev/null
+++ b/android/WALT/app/src/main/res/menu/menu_main.xml
@@ -0,0 +1,28 @@
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
+
+
+
+ <item
+ android:id="@+id/action_upload"
+ android:orderInCategory="180"
+ android:title="Upload"
+ android:icon="@drawable/ic_file_upload_black_24dp"
+ app:showAsAction="ifRoom" />
+
+ <item
+ android:id="@+id/action_share"
+ android:orderInCategory="190"
+ android:title="Share"
+ android:icon="@drawable/ic_share_black_24dp"
+ app:showAsAction="ifRoom" />
+
+ <item
+ android:id="@+id/action_help"
+ android:orderInCategory="200"
+ android:title="Help"
+ android:icon="@drawable/ic_help_outline_black_24dp"
+ app:showAsAction="ifRoom" />
+
+</menu>