diff options
author | Pacien TRAN-GIRARD | 2017-07-03 15:45:50 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2017-07-03 15:45:50 +0200 |
commit | 328ad552b0b508e08072ebcd9409f6214c748a0d (patch) | |
tree | b7093ce3d6c839d5f89b8d05a42a0e8b5d42090b /app/src/main/res/menu | |
parent | d221543bb9d6bc9b7344cc96f010a501ff35bb7f (diff) | |
download | tincapp-328ad552b0b508e08072ebcd9409f6214c748a0d.tar.gz |
Add configure activity, displaying various paths
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r-- | app/src/main/res/menu/menu_start.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/res/menu/menu_start.xml b/app/src/main/res/menu/menu_start.xml new file mode 100644 index 0000000..4f455d1 --- /dev/null +++ b/app/src/main/res/menu/menu_start.xml | |||
@@ -0,0 +1,14 @@ | |||
1 | <menu xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | xmlns:app="http://schemas.android.com/apk/res-auto" | ||
3 | xmlns:tools="http://schemas.android.com/tools" | ||
4 | tools:context="org.pacien.tincapp.activities.StartActivity"> | ||
5 | |||
6 | <item | ||
7 | android:id="@+id/menu_about" | ||
8 | android:icon="@drawable/ic_build_black_24dp" | ||
9 | android:onClick="openConfigureActivity" | ||
10 | android:tint="@color/colorAccent" | ||
11 | android:title="@string/menu_configure" | ||
12 | app:showAsAction="ifRoom"/> | ||
13 | |||
14 | </menu> | ||