OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <org.chromium.chrome.browser.widget.BoundedLinearLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 9 android:gravity="center" |
| 10 android:padding="24dp" |
| 11 chrome:maxWidth="312dp" |
| 12 style="@style/AlertDialogContent" > |
| 13 |
| 14 <ProgressBar |
| 15 android:id="@+id/progress" |
| 16 android:layout_width="32dp" |
| 17 android:layout_height="32dp" |
| 18 android:layout_gravity="center_vertical" /> |
| 19 |
| 20 <TextView |
| 21 android:id="@+id/message" |
| 22 android:layout_width="wrap_content" |
| 23 android:layout_height="wrap_content" |
| 24 android:layout_gravity="center_vertical" |
| 25 android:layout_marginStart="24dp" |
| 26 android:text="@string/signin_gms_updating" |
| 27 android:lineSpacingMultiplier="1.4" |
| 28 android:textSize="14sp" /> |
| 29 </org.chromium.chrome.browser.widget.BoundedLinearLayout> |
OLD | NEW |