aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2018-08-21 02:12:20 +0200
committerpacien2018-08-21 02:12:20 +0200
commit5249552bd31793c3ca502a4540d6c81ded35638f (patch)
tree4d330ee46909cb4ee0044f3b8566c4a1cd34f1ae
parent4629e909c9f8dd6fdc7ec9ed1dcc4668311e134f (diff)
downloadtincapp-5249552bd31793c3ca502a4540d6c81ded35638f.tar.gz
Make network info selectable
-rw-r--r--app/src/main/res/layout/status_network_info_fragment.xml21
1 files changed, 14 insertions, 7 deletions
diff --git a/app/src/main/res/layout/status_network_info_fragment.xml b/app/src/main/res/layout/status_network_info_fragment.xml
index 6bd2b30..1013470 100644
--- a/app/src/main/res/layout/status_network_info_fragment.xml
+++ b/app/src/main/res/layout/status_network_info_fragment.xml
@@ -49,7 +49,8 @@
49 49
50 <TextView 50 <TextView
51 style="@style/AppTheme.BlockContent" 51 style="@style/AppTheme.BlockContent"
52 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.addresses)}"/> 52 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.addresses)}"
53 android:textIsSelectable="true"/>
53 54
54 </LinearLayout> 55 </LinearLayout>
55 56
@@ -61,7 +62,8 @@
61 62
62 <TextView 63 <TextView
63 style="@style/AppTheme.BlockContent" 64 style="@style/AppTheme.BlockContent"
64 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.routes)}"/> 65 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.routes)}"
66 android:textIsSelectable="true"/>
65 67
66 </LinearLayout> 68 </LinearLayout>
67 69
@@ -73,7 +75,8 @@
73 75
74 <TextView 76 <TextView
75 style="@style/AppTheme.BlockContent" 77 style="@style/AppTheme.BlockContent"
76 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.dnsServers)}"/> 78 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.dnsServers)}"
79 android:textIsSelectable="true"/>
77 80
78 </LinearLayout> 81 </LinearLayout>
79 82
@@ -85,7 +88,8 @@
85 88
86 <TextView 89 <TextView
87 style="@style/AppTheme.BlockContent" 90 style="@style/AppTheme.BlockContent"
88 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.searchDomains)}"/> 91 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.searchDomains)}"
92 android:textIsSelectable="true"/>
89 93
90 </LinearLayout> 94 </LinearLayout>
91 95
@@ -99,7 +103,8 @@
99 103
100 <TextView 104 <TextView
101 style="@style/AppTheme.BlockContent" 105 style="@style/AppTheme.BlockContent"
102 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.allowedApplications)}"/> 106 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.allowedApplications)}"
107 android:textIsSelectable="true"/>
103 108
104 </LinearLayout> 109 </LinearLayout>
105 110
@@ -113,7 +118,8 @@
113 118
114 <TextView 119 <TextView
115 style="@style/AppTheme.BlockContent" 120 style="@style/AppTheme.BlockContent"
116 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.disallowedApplications)}"/> 121 android:text="@{listFormatter.formatList(vpnInterfaceConfiguration.disallowedApplications)}"
122 android:textIsSelectable="true"/>
117 123
118 </LinearLayout> 124 </LinearLayout>
119 125
@@ -125,7 +131,8 @@
125 131
126 <TextView 132 <TextView
127 style="@style/AppTheme.BlockContent" 133 style="@style/AppTheme.BlockContent"
128 android:text="@{vpnInterfaceConfiguration.allowBypass ? @string/status_network_info_yes_value : @string/status_network_info_no_value}"/> 134 android:text="@{vpnInterfaceConfiguration.allowBypass ? @string/status_network_info_yes_value : @string/status_network_info_no_value}"
135 android:textIsSelectable="true"/>
129 136
130 </LinearLayout> 137 </LinearLayout>
131 138