OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- | 2 <!-- |
3 Copyright 2015 The Chromium Authors. All rights reserved. | 3 Copyright 2015 The Chromium Authors. All rights reserved. |
4 | 4 |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="match_parent" | 10 android:layout_height="match_parent" |
11 android:orientation="horizontal" > | 11 android:orientation="horizontal" > |
12 | 12 |
13 <ImageView | 13 <ImageView |
14 android:id="@+id/connection_info_icon" | 14 android:id="@+id/connection_info_icon" |
15 android:layout_width="wrap_content" | 15 android:layout_width="wrap_content" |
16 android:layout_height="wrap_content" | 16 android:layout_height="wrap_content" |
17 android:contentDescription="@null" /> | 17 android:contentDescription="@null" /> |
18 | 18 |
19 <LinearLayout | 19 <LinearLayout |
20 android:id="@+id/connection_info_text_layout" | 20 android:id="@+id/connection_info_text_layout" |
21 android:layout_width="wrap_content" | 21 android:layout_width="wrap_content" |
22 android:layout_height="wrap_content" | 22 android:layout_height="wrap_content" |
23 android:orientation="vertical" | 23 android:orientation="vertical" |
| 24 android:paddingBottom="@dimen/connection_info_padding_thin" |
24 android:paddingStart="@dimen/connection_info_padding_thin" > | 25 android:paddingStart="@dimen/connection_info_padding_thin" > |
25 | 26 |
26 <TextView | 27 <TextView |
27 android:id="@+id/connection_info_headline" | 28 android:id="@+id/connection_info_headline" |
28 android:layout_width="wrap_content" | 29 android:layout_width="wrap_content" |
29 android:layout_height="wrap_content" | 30 android:layout_height="wrap_content" |
30 android:paddingBottom="@dimen/connection_info_padding_thin" | 31 android:paddingBottom="@dimen/connection_info_padding_thin" |
31 android:textStyle="bold" | 32 android:textStyle="bold" |
32 android:textColor="@color/connection_info_popup_text" /> | 33 android:textColor="@color/connection_info_popup_text" /> |
33 | 34 |
34 <TextView | 35 <TextView |
35 android:id="@+id/connection_info_description" | 36 android:id="@+id/connection_info_description" |
36 android:layout_width="wrap_content" | 37 android:layout_width="wrap_content" |
37 android:layout_height="wrap_content" | 38 android:layout_height="wrap_content" |
38 android:textColor="@color/connection_info_popup_text" /> | 39 android:textColor="@color/connection_info_popup_text" /> |
39 </LinearLayout> | 40 </LinearLayout> |
40 | 41 |
41 </LinearLayout> | 42 </LinearLayout> |
OLD | NEW |