diff options
author | Pacien TRAN-GIRARD | 2017-07-04 18:51:57 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2017-07-04 18:51:57 +0200 |
commit | 80394001852e8400fd2c3d30e441306957d32243 (patch) | |
tree | 6835941520e9fc0e63324bb42eb08a4b6d50f746 /app/src/main/res/menu/menu_status.xml | |
parent | 0b3eef56d244bf40598cba66b1e48479ecbdfaef (diff) | |
download | tincapp-80394001852e8400fd2c3d30e441306957d32243.tar.gz |
Add status activity
Diffstat (limited to 'app/src/main/res/menu/menu_status.xml')
-rw-r--r-- | app/src/main/res/menu/menu_status.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/res/menu/menu_status.xml b/app/src/main/res/menu/menu_status.xml new file mode 100644 index 0000000..8884136 --- /dev/null +++ b/app/src/main/res/menu/menu_status.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.StatusActivity"> | ||
5 | |||
6 | <item | ||
7 | android:id="@+id/menu_disconnect" | ||
8 | android:icon="@drawable/ic_stop_primary_24dp" | ||
9 | android:onClick="stopVpn" | ||
10 | android:tint="@color/colorAccent" | ||
11 | android:title="@string/menu_disconnect" | ||
12 | app:showAsAction="ifRoom"/> | ||
13 | |||
14 | </menu> | ||