aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_network_status_header.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/fragment_network_status_header.xml')
-rw-r--r--app/src/main/res/layout/fragment_network_status_header.xml147
1 files changed, 0 insertions, 147 deletions
diff --git a/app/src/main/res/layout/fragment_network_status_header.xml b/app/src/main/res/layout/fragment_network_status_header.xml
deleted file mode 100644
index b96229d..0000000
--- a/app/src/main/res/layout/fragment_network_status_header.xml
+++ /dev/null
@@ -1,147 +0,0 @@
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19-->
20
21<LinearLayout
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 xmlns:tools="http://schemas.android.com/tools"
24 android:id="@+id/page_configure"
25 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
27 android:orientation="vertical"
28 tools:context="org.pacien.tincapp.activities.StatusActivity">
29
30 <TextView
31 style="@style/AppTheme.SectionTitle"
32 android:text="@string/title_network_info"/>
33
34 <LinearLayout style="@style/AppTheme.List">
35
36 <LinearLayout style="@style/AppTheme.ListBlock">
37
38 <TextView
39 style="@style/AppTheme.BlockTitle"
40 android:text="@string/title_network_name"/>
41
42 <TextView
43 android:id="@+id/text_network_name"
44 style="@style/AppTheme.BlockContent"/>
45
46 </LinearLayout>
47
48 <LinearLayout style="@style/AppTheme.ListBlock">
49
50 <TextView
51 style="@style/AppTheme.BlockTitle"
52 android:text="@string/title_ip_addresses"/>
53
54 <TextView
55 android:id="@+id/text_network_ip_addresses"
56 style="@style/AppTheme.BlockContent"/>
57
58 </LinearLayout>
59
60 <LinearLayout style="@style/AppTheme.ListBlock">
61
62 <TextView
63 style="@style/AppTheme.BlockTitle"
64 android:text="@string/title_routes"/>
65
66 <TextView
67 android:id="@+id/text_network_routes"
68 style="@style/AppTheme.BlockContent"/>
69
70 </LinearLayout>
71
72 <LinearLayout style="@style/AppTheme.ListBlock">
73
74 <TextView
75 style="@style/AppTheme.BlockTitle"
76 android:text="@string/title_dns_servers"/>
77
78 <TextView
79 android:id="@+id/text_network_dns_servers"
80 style="@style/AppTheme.BlockContent"/>
81
82 </LinearLayout>
83
84 <LinearLayout style="@style/AppTheme.ListBlock">
85
86 <TextView
87 style="@style/AppTheme.BlockTitle"
88 android:text="@string/title_search_domains"/>
89
90 <TextView
91 android:id="@+id/text_network_search_domains"
92 style="@style/AppTheme.BlockContent"/>
93
94 </LinearLayout>
95
96 <LinearLayout
97 android:id="@+id/block_network_allowed_applications"
98 style="@style/AppTheme.ListBlock">
99
100 <TextView
101 style="@style/AppTheme.BlockTitle"
102 android:text="@string/title_allowed_applications"/>
103
104 <TextView
105 android:id="@+id/text_network_allowed_applications"
106 style="@style/AppTheme.BlockContent"/>
107
108 </LinearLayout>
109
110 <LinearLayout
111 android:id="@+id/block_network_disallowed_applications"
112 style="@style/AppTheme.ListBlock">
113
114 <TextView
115 style="@style/AppTheme.BlockTitle"
116 android:text="@string/title_disallowed_applications"/>
117
118 <TextView
119 android:id="@+id/text_network_disallowed_applications"
120 style="@style/AppTheme.BlockContent"/>
121
122 </LinearLayout>
123
124 <LinearLayout style="@style/AppTheme.ListBlock">
125
126 <TextView
127 style="@style/AppTheme.BlockTitle"
128 android:text="@string/title_allow_bypass"/>
129
130 <TextView
131 android:id="@+id/text_network_allow_bypass"
132 style="@style/AppTheme.BlockContent"/>
133
134 </LinearLayout>
135
136 </LinearLayout>
137
138 <TextView
139 style="@style/AppTheme.SectionTitle"
140 android:text="@string/title_nodes"/>
141
142 <TextView
143 android:id="@+id/node_list_placeholder"
144 style="@style/AppTheme.ListBlock.Placeholder"
145 android:text="@string/message_loading"/>
146
147</LinearLayout>