OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <!-- Layout used to present a set of default search engines to the user. --> | 7 <!-- Layout used to present a set of default search engines to the user. --> |
8 <LinearLayout | 8 <LinearLayout |
9 xmlns:android="http://schemas.android.com/apk/res/android" | 9 xmlns:android="http://schemas.android.com/apk/res/android" |
10 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 10 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 android:textColor="@color/default_text_color" | 44 android:textColor="@color/default_text_color" |
45 android:textSize="@dimen/fre_title_text_size" | 45 android:textSize="@dimen/fre_title_text_size" |
46 android:text="@string/search_engine_dialog_title" /> | 46 android:text="@string/search_engine_dialog_title" /> |
47 | 47 |
48 <View style="@style/Divider" /> | 48 <View style="@style/Divider" /> |
49 | 49 |
50 <org.chromium.chrome.browser.widget.RadioButtonLayout | 50 <org.chromium.chrome.browser.widget.RadioButtonLayout |
51 android:id="@+id/default_search_engine_dialog_options" | 51 android:id="@+id/default_search_engine_dialog_options" |
52 android:layout_width="match_parent" | 52 android:layout_width="match_parent" |
53 android:layout_height="wrap_content" | 53 android:layout_height="wrap_content" |
| 54 android:layout_marginTop="12dp" |
54 android:layout_marginStart="12dp" | 55 android:layout_marginStart="12dp" |
55 android:layout_marginEnd="@dimen/signin_chooser_padding" /> | 56 android:layout_marginEnd="@dimen/signin_chooser_padding" /> |
56 </LinearLayout> | 57 </LinearLayout> |
57 </org.chromium.chrome.browser.firstrun.FirstRunChooserView> | 58 </org.chromium.chrome.browser.firstrun.FirstRunChooserView> |
58 </FrameLayout> | 59 </FrameLayout> |
59 | 60 |
60 <TextView | 61 <TextView |
61 android:layout_width="match_parent" | 62 android:layout_width="match_parent" |
62 android:layout_height="wrap_content" | 63 android:layout_height="wrap_content" |
63 android:text="@string/search_engine_dialog_footer" | 64 android:text="@string/search_engine_dialog_footer" |
(...skipping 13 matching lines...) Expand all Loading... |
77 android:paddingStart="@dimen/fre_button_padding" | 78 android:paddingStart="@dimen/fre_button_padding" |
78 android:paddingEnd="@dimen/fre_button_padding" | 79 android:paddingEnd="@dimen/fre_button_padding" |
79 android:text="@string/ok" | 80 android:text="@string/ok" |
80 android:textAllCaps="true" | 81 android:textAllCaps="true" |
81 android:textColor="@android:color/white" | 82 android:textColor="@android:color/white" |
82 android:textSize="14sp" | 83 android:textSize="14sp" |
83 chrome:buttonColor="@color/light_active_color" | 84 chrome:buttonColor="@color/light_active_color" |
84 chrome:buttonRaised="false" /> | 85 chrome:buttonRaised="false" /> |
85 | 86 |
86 </LinearLayout> | 87 </LinearLayout> |
OLD | NEW |