diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-21 16:03:00 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-21 16:03:00 -0700 |
commit | 8769be855196f17bb7bfdfb411994ea901eb51a9 (patch) | |
tree | ae2ba73fcb63ab02dc7e83bff2f0c7f86c02c320 /app/src/main/res/menu/menu_settings.xml | |
parent | 1ec75d0b2b7f746e2a0ae982b936fa4f566ec738 (diff) | |
download | frost-8769be855196f17bb7bfdfb411994ea901eb51a9.tar.gz frost-8769be855196f17bb7bfdfb411994ea901eb51a9.tar.bz2 frost-8769be855196f17bb7bfdfb411994ea901eb51a9.zip |
Lots of theming and fixes
Diffstat (limited to 'app/src/main/res/menu/menu_settings.xml')
-rw-r--r-- | app/src/main/res/menu/menu_settings.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/main/res/menu/menu_settings.xml b/app/src/main/res/menu/menu_settings.xml new file mode 100644 index 00000000..7ae59ad2 --- /dev/null +++ b/app/src/main/res/menu/menu_settings.xml @@ -0,0 +1,17 @@ +<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="com.pitchedapps.myapplication.MainActivity"> + + <item + android:id="@+id/action_email" + android:orderInCategory="100" + android:title="@string/kau_send_feedback" + app:showAsAction="ifRoom" /> + <item + android:id="@+id/action_changelog" + android:orderInCategory="200" + android:title="@string/kau_changelog" + app:showAsAction="ifRoom" /> +</menu> + |