|
69 | 69 |
|
70 | 70 | </RelativeLayout> |
71 | 71 |
|
| 72 | + <View |
| 73 | + android:id="@+id/visibility_divider" |
| 74 | + android:layout_width="match_parent" |
| 75 | + android:layout_height="1px" |
| 76 | + android:background="@color/divider_grey" |
| 77 | + android:importantForAccessibility="no"/> |
| 78 | + |
| 79 | + <com.simplemobiletools.commons.views.MyTextView |
| 80 | + android:id="@+id/visibility_label" |
| 81 | + android:layout_width="wrap_content" |
| 82 | + android:layout_height="wrap_content" |
| 83 | + android:layout_marginLeft="@dimen/big_margin" |
| 84 | + android:layout_marginStart="@dimen/big_margin" |
| 85 | + android:layout_marginTop="@dimen/activity_margin" |
| 86 | + android:text="@string/visibility" |
| 87 | + android:textAllCaps="true" |
| 88 | + android:textSize="@dimen/smaller_text_size"/> |
| 89 | + |
72 | 90 | <RelativeLayout |
73 | 91 | android:id="@+id/settings_show_hidden_holder" |
74 | 92 | android:layout_width="match_parent" |
|
89 | 107 |
|
90 | 108 | </RelativeLayout> |
91 | 109 |
|
| 110 | + <View |
| 111 | + android:id="@+id/file_operations_divider" |
| 112 | + android:layout_width="match_parent" |
| 113 | + android:layout_height="1px" |
| 114 | + android:background="@color/divider_grey" |
| 115 | + android:importantForAccessibility="no"/> |
| 116 | + |
| 117 | + <com.simplemobiletools.commons.views.MyTextView |
| 118 | + android:id="@+id/file_operations_label" |
| 119 | + android:layout_width="wrap_content" |
| 120 | + android:layout_height="wrap_content" |
| 121 | + android:layout_marginLeft="@dimen/big_margin" |
| 122 | + android:layout_marginStart="@dimen/big_margin" |
| 123 | + android:layout_marginTop="@dimen/activity_margin" |
| 124 | + android:text="@string/file_operations" |
| 125 | + android:textAllCaps="true" |
| 126 | + android:textSize="@dimen/smaller_text_size"/> |
| 127 | + |
92 | 128 | <RelativeLayout |
93 | | - android:id="@+id/settings_password_protection_holder" |
| 129 | + android:id="@+id/settings_keep_last_modified_holder" |
94 | 130 | android:layout_width="match_parent" |
95 | 131 | android:layout_height="wrap_content" |
96 | 132 | android:layout_marginTop="@dimen/medium_margin" |
97 | 133 | android:background="?attr/selectableItemBackground" |
98 | 134 | android:padding="@dimen/activity_margin"> |
99 | 135 |
|
100 | 136 | <com.simplemobiletools.commons.views.MySwitchCompat |
101 | | - android:id="@+id/settings_password_protection" |
| 137 | + android:id="@+id/settings_keep_last_modified" |
102 | 138 | android:layout_width="match_parent" |
103 | 139 | android:layout_height="wrap_content" |
104 | 140 | android:background="@null" |
105 | 141 | android:clickable="false" |
106 | 142 | android:paddingLeft="@dimen/medium_margin" |
107 | 143 | android:paddingStart="@dimen/medium_margin" |
108 | | - android:text="@string/password_protect_hidden_items"/> |
| 144 | + android:text="@string/keep_last_modified"/> |
109 | 145 |
|
110 | 146 | </RelativeLayout> |
111 | 147 |
|
| 148 | + <View |
| 149 | + android:id="@+id/scrolling_divider" |
| 150 | + android:layout_width="match_parent" |
| 151 | + android:layout_height="1px" |
| 152 | + android:background="@color/divider_grey" |
| 153 | + android:importantForAccessibility="no"/> |
| 154 | + |
| 155 | + <com.simplemobiletools.commons.views.MyTextView |
| 156 | + android:id="@+id/scrolling_label" |
| 157 | + android:layout_width="wrap_content" |
| 158 | + android:layout_height="wrap_content" |
| 159 | + android:layout_marginLeft="@dimen/big_margin" |
| 160 | + android:layout_marginStart="@dimen/big_margin" |
| 161 | + android:layout_marginTop="@dimen/activity_margin" |
| 162 | + android:text="@string/scrolling" |
| 163 | + android:textAllCaps="true" |
| 164 | + android:textSize="@dimen/smaller_text_size"/> |
| 165 | + |
112 | 166 | <RelativeLayout |
113 | | - android:id="@+id/settings_keep_last_modified_holder" |
| 167 | + android:id="@+id/settings_show_info_bubble_holder" |
114 | 168 | android:layout_width="match_parent" |
115 | 169 | android:layout_height="wrap_content" |
116 | 170 | android:layout_marginTop="@dimen/medium_margin" |
117 | 171 | android:background="?attr/selectableItemBackground" |
118 | 172 | android:padding="@dimen/activity_margin"> |
119 | 173 |
|
120 | 174 | <com.simplemobiletools.commons.views.MySwitchCompat |
121 | | - android:id="@+id/settings_keep_last_modified" |
| 175 | + android:id="@+id/settings_show_info_bubble" |
122 | 176 | android:layout_width="match_parent" |
123 | 177 | android:layout_height="wrap_content" |
124 | 178 | android:background="@null" |
125 | 179 | android:clickable="false" |
126 | 180 | android:paddingLeft="@dimen/medium_margin" |
127 | 181 | android:paddingStart="@dimen/medium_margin" |
128 | | - android:text="@string/keep_last_modified"/> |
| 182 | + android:text="@string/show_info_bubble"/> |
129 | 183 |
|
130 | 184 | </RelativeLayout> |
131 | 185 |
|
| 186 | + <View |
| 187 | + android:id="@+id/security_divider" |
| 188 | + android:layout_width="match_parent" |
| 189 | + android:layout_height="1px" |
| 190 | + android:background="@color/divider_grey" |
| 191 | + android:importantForAccessibility="no"/> |
| 192 | + |
| 193 | + <com.simplemobiletools.commons.views.MyTextView |
| 194 | + android:id="@+id/security_label" |
| 195 | + android:layout_width="wrap_content" |
| 196 | + android:layout_height="wrap_content" |
| 197 | + android:layout_marginLeft="@dimen/big_margin" |
| 198 | + android:layout_marginStart="@dimen/big_margin" |
| 199 | + android:layout_marginTop="@dimen/activity_margin" |
| 200 | + android:text="@string/security" |
| 201 | + android:textAllCaps="true" |
| 202 | + android:textSize="@dimen/smaller_text_size"/> |
| 203 | + |
132 | 204 | <RelativeLayout |
133 | | - android:id="@+id/settings_show_info_bubble_holder" |
| 205 | + android:id="@+id/settings_password_protection_holder" |
134 | 206 | android:layout_width="match_parent" |
135 | 207 | android:layout_height="wrap_content" |
136 | 208 | android:layout_marginTop="@dimen/medium_margin" |
137 | 209 | android:background="?attr/selectableItemBackground" |
138 | 210 | android:padding="@dimen/activity_margin"> |
139 | 211 |
|
140 | 212 | <com.simplemobiletools.commons.views.MySwitchCompat |
141 | | - android:id="@+id/settings_show_info_bubble" |
| 213 | + android:id="@+id/settings_password_protection" |
142 | 214 | android:layout_width="match_parent" |
143 | 215 | android:layout_height="wrap_content" |
144 | 216 | android:background="@null" |
145 | 217 | android:clickable="false" |
146 | 218 | android:paddingLeft="@dimen/medium_margin" |
147 | 219 | android:paddingStart="@dimen/medium_margin" |
148 | | - android:text="@string/show_info_bubble"/> |
| 220 | + android:text="@string/password_protect_hidden_items"/> |
149 | 221 |
|
150 | 222 | </RelativeLayout> |
151 | 223 |
|
|
0 commit comments