1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/layout/fxaccount_confirm_account.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<!-- 1.6 + This Source Code Form is subject to the terms of the Mozilla Public 1.7 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 +--> 1.10 +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 1.11 + android:layout_width="fill_parent" 1.12 + android:layout_height="fill_parent" 1.13 + android:fillViewport="true" > 1.14 + 1.15 + <LinearLayout style="@style/FxAccountMiddle" > 1.16 + 1.17 + <LinearLayout style="@style/FxAccountSpacer" /> 1.18 + 1.19 + <TextView 1.20 + style="@style/FxAccountHeaderItem" 1.21 + android:text="@string/fxaccount_confirm_account_header" > 1.22 + </TextView> 1.23 + 1.24 + <ImageView 1.25 + android:layout_width="wrap_content" 1.26 + android:layout_height="wrap_content" 1.27 + android:layout_gravity="center_horizontal" 1.28 + android:layout_marginBottom="40dp" 1.29 + android:background="@android:color/transparent" 1.30 + android:contentDescription="@string/fxaccount_empty_contentDescription" 1.31 + android:src="@drawable/fxaccount_mail" > 1.32 + </ImageView> 1.33 + 1.34 + <TextView 1.35 + android:id="@+id/verification_link_text" 1.36 + style="@style/FxAccountTextItem" 1.37 + android:layout_marginBottom="40dp" 1.38 + android:text="@string/fxaccount_confirm_account_verification_link" 1.39 + android:textSize="18sp" /> 1.40 + 1.41 + <Button 1.42 + android:id="@+id/button" 1.43 + style="@style/FxAccountButton" 1.44 + android:text="@string/fxaccount_back_to_browsing" /> 1.45 + 1.46 + <TextView 1.47 + android:id="@+id/resend_confirmation_email_link" 1.48 + style="@style/FxAccountLinkItem" 1.49 + android:text="@string/fxaccount_confirm_account_resend_email" /> 1.50 + 1.51 + <LinearLayout style="@style/FxAccountSpacer" /> 1.52 + 1.53 + <ImageView 1.54 + style="@style/FxAccountIcon" 1.55 + android:contentDescription="@string/fxaccount_empty_contentDescription" /> 1.56 + </LinearLayout> 1.57 + 1.58 +</ScrollView>