mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
5db1011731
--HG-- extra : rebase_source : 25e8b78e6ef97e3bb1e0ccb701bd98d9d1b24e4c
51 lines
2.1 KiB
XML
51 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="@style/Screen"
|
|
android:background="@color/background_normal"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:gravity="center"
|
|
android:layout_gravity="center" >
|
|
|
|
<ImageView android:id="@+id/image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="20dp"
|
|
android:src="@drawable/logo" />
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16dp"
|
|
android:textColor="#000000"
|
|
android:typeface="sans"
|
|
android:text="@string/splash_settingup" />
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginLeft="32dp"
|
|
android:layout_marginRight="32dp"
|
|
android:textSize="14dp"
|
|
android:textColor="#7C7D7F"
|
|
android:typeface="sans"
|
|
android:text="@string/splash_bookmarks_history" />
|
|
|
|
<ImageView android:id="@+id/spinner_image"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/progress_spinner" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|