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/layout/page_configure.xml | |
parent | d221543bb9d6bc9b7344cc96f010a501ff35bb7f (diff) | |
download | tincapp-328ad552b0b508e08072ebcd9409f6214c748a0d.tar.gz |
Add configure activity, displaying various paths
Diffstat (limited to 'app/src/main/res/layout/page_configure.xml')
-rw-r--r-- | app/src/main/res/layout/page_configure.xml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/app/src/main/res/layout/page_configure.xml b/app/src/main/res/layout/page_configure.xml new file mode 100644 index 0000000..3ecdaa6 --- /dev/null +++ b/app/src/main/res/layout/page_configure.xml | |||
@@ -0,0 +1,81 @@ | |||
1 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | xmlns:tools="http://schemas.android.com/tools" | ||
3 | android:id="@+id/page_configure" | ||
4 | android:layout_width="match_parent" | ||
5 | android:layout_height="wrap_content" | ||
6 | android:orientation="vertical" | ||
7 | tools:context="org.pacien.tincapp.activities.ConfigureActivity"> | ||
8 | |||
9 | <TextView | ||
10 | style="@style/AppTheme.SectionTitle" | ||
11 | android:text="@string/title_path_info"/> | ||
12 | |||
13 | <LinearLayout style="@style/AppTheme.List"> | ||
14 | |||
15 | <LinearLayout style="@style/AppTheme.ListBlock"> | ||
16 | |||
17 | <TextView | ||
18 | style="@style/AppTheme.BlockTitle" | ||
19 | android:text="@string/title_configuration_directories"/> | ||
20 | |||
21 | <TextView | ||
22 | android:id="@+id/text_configuration_directories" | ||
23 | style="@style/AppTheme.BlockContent"/> | ||
24 | |||
25 | </LinearLayout> | ||
26 | |||
27 | <LinearLayout style="@style/AppTheme.ListBlock"> | ||
28 | |||
29 | <TextView | ||
30 | style="@style/AppTheme.BlockTitle" | ||
31 | android:text="@string/title_log_directories"/> | ||
32 | |||
33 | <TextView | ||
34 | android:id="@+id/text_log_directories" | ||
35 | style="@style/AppTheme.BlockContent"/> | ||
36 | |||
37 | </LinearLayout> | ||
38 | |||
39 | <LinearLayout style="@style/AppTheme.ListBlock"> | ||
40 | |||
41 | <TextView | ||
42 | style="@style/AppTheme.BlockTitle" | ||
43 | android:text="@string/title_tinc_binaries"/> | ||
44 | |||
45 | <TextView | ||
46 | android:id="@+id/text_tinc_binaries" | ||
47 | style="@style/AppTheme.BlockContent"/> | ||
48 | |||
49 | </LinearLayout> | ||
50 | |||
51 | </LinearLayout> | ||
52 | |||
53 | <TextView | ||
54 | style="@style/AppTheme.SectionTitle" | ||
55 | android:text="@string/title_tools"/> | ||
56 | |||
57 | <LinearLayout style="@style/AppTheme.List"> | ||
58 | |||
59 | <LinearLayout | ||
60 | style="@style/AppTheme.ListBlock.Clickable" | ||
61 | android:onClick="generateConf"> | ||
62 | |||
63 | <TextView | ||
64 | style="@style/AppTheme.BlockTitle" | ||
65 | android:text="@string/action_generate_node_configuration_and_keys"/> | ||
66 | |||
67 | </LinearLayout> | ||
68 | |||
69 | <LinearLayout | ||
70 | style="@style/AppTheme.ListBlock.Clickable" | ||
71 | android:onClick="joinNetwork"> | ||
72 | |||
73 | <TextView | ||
74 | style="@style/AppTheme.BlockTitle" | ||
75 | android:text="@string/action_join_network_via_invitation_url"/> | ||
76 | |||
77 | </LinearLayout> | ||
78 | |||
79 | </LinearLayout> | ||
80 | |||
81 | </LinearLayout> | ||