Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: chrome/android/java/res/layout/updating_gms_progress_view.xml

Issue 2551063003: Add a ProgressDialog during sign-in flow when GMS is updated. (Closed)
Patch Set: Update layout Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698