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" | |
gogerald1
2016/12/15 21:58:53
may no need "xmlns:chrome="http://schemas.android.
estevenson
2016/12/15 22:13:22
It's still needed. I think to use BoundedLinearLay
| |
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" | |
gogerald1
2016/12/15 21:58:53
can you re-order these attributes, like layout rel
estevenson
2016/12/15 22:13:22
Done.
| |
23 android:layout_height="wrap_content" | |
24 android:lineSpacingMultiplier="1.4" | |
25 android:textSize="14sp" | |
26 android:layout_gravity="center_vertical" | |
27 android:layout_marginStart="24dp" | |
28 android:text="@string/signin_gms_updating" /> | |
29 </org.chromium.chrome.browser.widget.BoundedLinearLayout> | |
OLD | NEW |