gecko-dev/mobile/android/base/resources/layout/setup_screen.xml
Sriram Ramasubramanian 447740e760 Bug 823644: Remove the style named "Screen". [r=mfinkle]
--HG--
extra : rebase_source : 9bb92ef85913759a8f58cc7e9f3518317ebde796
2013-03-13 15:26:25 -07:00

50 lines
2.0 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"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@color/background_normal">
<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>