| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 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 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:layout_width="match_parent" | 7 android:layout_width="match_parent" |
| 8 android:layout_height="match_parent" | 8 android:layout_height="match_parent" |
| 9 android:fillViewport="true" | 9 android:fillViewport="true" |
| 10 style="@style/PreferenceScreenLayout" > | 10 style="@style/PreferenceScreenLayout" > |
| 11 | 11 |
| 12 <LinearLayout | 12 <LinearLayout |
| 13 android:layout_width="match_parent" | 13 android:layout_width="match_parent" |
| 14 android:layout_height="wrap_content" | 14 android:layout_height="wrap_content" |
| 15 android:clickable="true" | 15 android:clickable="true" |
| 16 android:focusableInTouchMode="true" | 16 android:focusableInTouchMode="true" |
| 17 android:orientation="vertical" | 17 android:orientation="vertical" > |
| 18 android:paddingTop="6dp" > | |
| 19 | 18 |
| 20 <LinearLayout | 19 <LinearLayout |
| 21 android:layout_width="match_parent" | 20 android:layout_width="match_parent" |
| 22 android:layout_height="wrap_content" | 21 android:layout_height="wrap_content" |
| 23 android:layout_margin="6dp" | |
| 24 android:orientation="horizontal" > | 22 android:orientation="horizontal" > |
| 25 | 23 |
| 26 <TextView | 24 <TextView |
| 27 android:id="@+id/homepage_switch_label" | 25 android:id="@+id/homepage_switch_label" |
| 28 android:layout_width="0dp" | 26 android:layout_width="0dp" |
| 29 android:layout_weight="1" | 27 android:layout_weight="1" |
| 30 android:layout_height="wrap_content" | 28 android:layout_height="wrap_content" |
| 31 android:singleLine="true" | 29 android:singleLine="true" |
| 32 android:textAppearance="@style/PreferenceTextAppearanceMedium" /
> | 30 android:textAppearance="@style/PreferenceTextAppearanceMedium" /
> |
| 33 | 31 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 56 <CheckBox | 54 <CheckBox |
| 57 android:id="@+id/default_checkbox" | 55 android:id="@+id/default_checkbox" |
| 58 android:layout_width="match_parent" | 56 android:layout_width="match_parent" |
| 59 android:layout_height="wrap_content" | 57 android:layout_height="wrap_content" |
| 60 android:layout_marginTop="6dp" | 58 android:layout_marginTop="6dp" |
| 61 android:layout_marginBottom="6dp" | 59 android:layout_marginBottom="6dp" |
| 62 android:text="@string/homepage_default_title" /> | 60 android:text="@string/homepage_default_title" /> |
| 63 </LinearLayout> | 61 </LinearLayout> |
| 64 | 62 |
| 65 </ScrollView> | 63 </ScrollView> |
| OLD | NEW |