mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
55 lines
2.0 KiB
XML
55 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/.
|
|
-->
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:fillViewport="true" >
|
|
|
|
<LinearLayout style="@style/FxAccountMiddle" >
|
|
|
|
<LinearLayout style="@style/FxAccountSpacer" />
|
|
|
|
<TextView
|
|
style="@style/FxAccountHeaderItem"
|
|
android:text="@string/fxaccount_confirm_account_header" >
|
|
</TextView>
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="40dp"
|
|
android:background="@android:color/transparent"
|
|
android:contentDescription="@string/fxaccount_mail_contentDescription"
|
|
android:src="@drawable/fxaccount_mail" >
|
|
</ImageView>
|
|
|
|
<TextView
|
|
android:id="@+id/verification_link_text"
|
|
style="@style/FxAccountTextItem"
|
|
android:layout_marginBottom="40dp"
|
|
android:text="@string/fxaccount_confirm_account_verification_link"
|
|
android:textSize="18sp" />
|
|
|
|
<Button
|
|
android:id="@+id/button"
|
|
style="@style/FxAccountButton"
|
|
android:text="@string/fxaccount_back_to_browsing" />
|
|
|
|
<TextView
|
|
android:id="@+id/resend_confirmation_email_link"
|
|
style="@style/FxAccountLinkItem"
|
|
android:text="@string/fxaccount_confirm_account_resend_email" />
|
|
|
|
<LinearLayout style="@style/FxAccountSpacer" />
|
|
|
|
<ImageView
|
|
style="@style/FxAccountIcon"
|
|
android:contentDescription="@string/fxaccount_icon_contentDescription" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |