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

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

Issue 2561433002: Make FirstRunActivity extend AsyncInitializationActivity. (Closed)
Patch Set: Update UX. Created 3 years, 11 months 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunActivity.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698