OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <org.chromium.chrome.browser.widget.DualControlLayout | 8 <org.chromium.chrome.browser.widget.DualControlLayout |
9 xmlns:android="http://schemas.android.com/apk/res/android" | 9 xmlns:android="http://schemas.android.com/apk/res/android" |
10 android:layout_width="wrap_content" | 10 android:layout_width="wrap_content" |
11 android:layout_height="wrap_content" > | 11 android:layout_height="wrap_content" > |
12 | 12 |
13 <!-- Label for the data. --> | 13 <!-- Label for the data. --> |
14 <TextView | 14 <TextView |
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:textColor="@color/infobar_descriptive_text_color" | 17 android:textColor="@color/infobar_descriptive_text_color" |
18 android:textSize="@dimen/infobar_text_size" /> | 18 android:textSize="@dimen/infobar_text_size" /> |
19 | 19 |
20 <!-- Shows the actively selected item. --> | 20 <!-- Shows the actively selected item. --> |
21 <TextView | 21 <TextView |
22 android:layout_width="wrap_content" | 22 android:layout_width="wrap_content" |
23 android:layout_height="wrap_content" | 23 android:layout_height="wrap_content" |
| 24 android:textColor="@color/default_text_color" |
24 android:textSize="@dimen/infobar_text_size" /> | 25 android:textSize="@dimen/infobar_text_size" /> |
25 | 26 |
26 </org.chromium.chrome.browser.widget.DualControlLayout> | 27 </org.chromium.chrome.browser.widget.DualControlLayout> |
OLD | NEW |