mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-04 07:29:07 +00:00
60 lines
2.1 KiB
XML
60 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/.
|
|
-->
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:fillViewport="true" >
|
|
|
|
<!-- In order to animate the icon from the bottom of the screen,
|
|
the icon needs to pass over the padding. -->
|
|
<LinearLayout
|
|
android:id="@+id/intro_view"
|
|
android:clipToPadding="false"
|
|
style="@style/FxAccountMiddle" >
|
|
|
|
<LinearLayout style="@style/FxAccountSpacer" />
|
|
|
|
<TextView
|
|
style="@style/FxAccountHeaderItem"
|
|
android:text="@string/fxaccount_getting_started_welcome_to_sync" >
|
|
</TextView>
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:contentDescription="@string/fxaccount_empty_contentDescription"
|
|
android:src="@drawable/fxaccount_intro" >
|
|
</ImageView>
|
|
|
|
<TextView
|
|
style="@style/FxAccountTextItem"
|
|
android:text="@string/fxaccount_getting_started_description" >
|
|
</TextView>
|
|
|
|
<Button
|
|
android:id="@+id/get_started_button"
|
|
style="@style/FxAccountButton"
|
|
android:text="@string/fxaccount_getting_started_get_started" />
|
|
|
|
<TextView
|
|
android:id="@+id/old_firefox"
|
|
style="@style/FxAccountLinkifiedItem"
|
|
android:text="@string/fxaccount_getting_started_old_firefox" />
|
|
|
|
<LinearLayout style="@style/FxAccountSpacer" />
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
style="@style/FxAccountIcon"
|
|
android:contentDescription="@string/fxaccount_empty_contentDescription" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|