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 <!-- Adapted from webapp_splash_screen_large.xml. |
| 7 Actual layout pending UX review. --> |
| 8 <RelativeLayout |
| 9 xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 android:id="@+id/webapp_splash_screen_layout" |
| 11 android:layout_width="match_parent" |
| 12 android:layout_height="match_parent" |
| 13 android:layout_marginBottom="@dimen/webapp_splash_offset" > |
| 14 |
| 15 <ImageView |
| 16 android:id="@+id/logo_view" |
| 17 android:layout_width="@dimen/signin_image_carousel_width" |
| 18 android:layout_height="wrap_content" |
| 19 android:layout_centerInParent="true" |
| 20 android:contentDescription="@null" |
| 21 android:src="@drawable/fre_product_logo" /> |
| 22 |
| 23 <LinearLayout |
| 24 android:layout_width="wrap_content" |
| 25 android:layout_height="wrap_content" |
| 26 android:layout_alignParentBottom="true" |
| 27 android:layout_centerHorizontal="true" |
| 28 android:layout_marginBottom="@dimen/webapp_splash_large_title_margin_bot
tom" |
| 29 android:gravity="center" |
| 30 android:orientation="horizontal" > |
| 31 |
| 32 <ProgressBar |
| 33 android:layout_width="20dp" |
| 34 android:layout_height="20dp" |
| 35 android:layout_marginEnd="12dp" |
| 36 android:layout_weight="0" /> |
| 37 |
| 38 <TextView |
| 39 android:id="@+id/message_view" |
| 40 android:layout_width="wrap_content" |
| 41 android:layout_height="wrap_content" |
| 42 android:layout_weight="0" |
| 43 android:text="@string/updating_chrome" |
| 44 android:textSize="20sp" |
| 45 android:textColor="@color/default_text_color" |
| 46 android:gravity="center" |
| 47 android:fontFamily="sans-serif" |
| 48 android:maxLines="1" /> |
| 49 |
| 50 </LinearLayout> |
| 51 |
| 52 </RelativeLayout> |
OLD | NEW |