| 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 | 3 |
| 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 <org.chromium.chrome.browser.firstrun.FirstRunView | 7 <org.chromium.chrome.browser.firstrun.FirstRunView |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 10 android:layout_width="match_parent" | 10 android:layout_width="match_parent" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 android:layout_marginBottom="16dp" | 86 android:layout_marginBottom="16dp" |
| 87 android:layout_gravity="bottom|center_horizontal" | 87 android:layout_gravity="bottom|center_horizontal" |
| 88 android:paddingStart="@dimen/fre_button_padding" | 88 android:paddingStart="@dimen/fre_button_padding" |
| 89 android:paddingEnd="@dimen/fre_button_padding" | 89 android:paddingEnd="@dimen/fre_button_padding" |
| 90 android:text="@string/fre_accept_continue" | 90 android:text="@string/fre_accept_continue" |
| 91 android:textAllCaps="true" | 91 android:textAllCaps="true" |
| 92 android:textColor="@android:color/white" | 92 android:textColor="@android:color/white" |
| 93 android:textSize="@dimen/fre_button_text_size" | 93 android:textSize="@dimen/fre_button_text_size" |
| 94 chrome:buttonColor="@color/light_active_color" | 94 chrome:buttonColor="@color/light_active_color" |
| 95 chrome:buttonRaised="false"/> | 95 chrome:buttonRaised="false"/> |
| 96 </org.chromium.chrome.browser.firstrun.FirstRunView> | 96 |
| 97 <!-- Same location as the button; marginButtom is adjusted for the different
size. --> |
| 98 <ProgressBar |
| 99 android:id="@+id/progress_spinner" |
| 100 style="@style/Widget.AppCompat.ProgressBar" |
| 101 android:layout_marginBottom="22dp" |
| 102 android:layout_gravity="bottom|center_horizontal" |
| 103 android:layout_width="24dp" |
| 104 android:layout_height="24dp" /> |
| 105 </org.chromium.chrome.browser.firstrun.FirstRunView> |
| OLD | NEW |