mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 18:09:16 +00:00
69 lines
3.2 KiB
XML
69 lines
3.2 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/. -->
|
|
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:orientation="vertical"
|
|
android:fillViewport="true">
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:minHeight="@dimen/firstrun_min_height"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="21"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:padding="10dp">
|
|
|
|
<ImageView android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/large_icon"/>
|
|
|
|
</LinearLayout>
|
|
<LinearLayout android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="29"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
android:background="@color/android:white">
|
|
|
|
<TextView android:layout_width="@dimen/firstrun_content_width"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:paddingTop="30dp"
|
|
android:textAppearance="@style/TextAppearance.FirstrunLight.Main"
|
|
android:text="@string/firstrun_welcome_message"/>
|
|
|
|
<TextView android:layout_width="@dimen/firstrun_content_width"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="20dp"
|
|
android:paddingBottom="30dp"
|
|
android:gravity="center"
|
|
android:textAppearance="@style/TextAppearance.FirstrunRegular.Body"
|
|
android:text="@string/firstrun_welcome_subtext"/>
|
|
|
|
<Button android:id="@+id/welcome_account"
|
|
style="@style/Widget.Firstrun.Button"
|
|
android:background="@drawable/firstrun_button_background"
|
|
android:layout_gravity="center"
|
|
android:text="@string/firstrun_welcome_button_account"/>
|
|
|
|
<TextView android:id="@+id/welcome_browse"
|
|
android:layout_width="@dimen/firstrun_content_width"
|
|
android:layout_height="wrap_content"
|
|
android:padding="20dp"
|
|
android:gravity="center"
|
|
android:textAppearance="@style/TextAppearance.FirstrunRegular.Link"
|
|
android:text="@string/firstrun_welcome_button_browser"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView>
|