mobile/android/base/resources/layout/fxaccount_sign_in.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!--
     3    This Source Code Form is subject to the terms of the Mozilla Public
     4    - License, v. 2.0. If a copy of the MPL was not distributed with this
     5    - file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6 -->
     8 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
     9     android:layout_width="fill_parent"
    10     android:layout_height="fill_parent"
    11     android:fillViewport="true" >
    13     <LinearLayout
    14         android:id="@+id/sign_in_view"
    15         style="@style/FxAccountMiddle" >
    17         <LinearLayout style="@style/FxAccountSpacer" />
    19         <TextView
    20             style="@style/FxAccountHeaderItem"
    21             android:text="@string/fxaccount_sign_in_sub_header" />
    23         <include layout="@layout/fxaccount_email_password_view" />
    25         <TextView
    26             android:id="@+id/remote_error"
    27             style="@style/FxAccountErrorItem" />
    29         <RelativeLayout style="@style/FxAccountButtonLayout" >
    31             <ProgressBar
    32                 android:id="@+id/progress"
    33                 style="@style/FxAccountProgress" />
    35             <Button
    36                 android:id="@+id/button"
    37                 style="@style/FxAccountButton"
    38                 android:text="@string/fxaccount_sign_in_button_label" />
    39         </RelativeLayout>
    41         <LinearLayout
    42             android:layout_width="fill_parent"
    43             android:layout_height="wrap_content"
    44             android:layout_marginTop="10dp"
    45             android:orientation="horizontal" >
    47             <TextView
    48                 android:id="@+id/forgot_password_link"
    49                 style="@style/FxAccountLinkifiedItem"
    50                 android:layout_gravity="left"
    51                 android:layout_weight="1"
    52                 android:gravity="left"
    53                 android:text="@string/fxaccount_sign_in_forgot_password" />
    55             <TextView
    56                 android:id="@+id/create_account_link"
    57                 style="@style/FxAccountLinkItem"
    58                 android:layout_gravity="right"
    59                 android:layout_weight="1"
    60                 android:gravity="right"
    61                 android:text="@string/fxaccount_sign_in_create_account_instead" />
    62         </LinearLayout>
    64         <TextView
    65             android:id="@+id/policy"
    66             style="@style/FxAccountLinkifiedItem"
    67             android:layout_marginTop="10dp"
    68             android:layout_marginLeft="10dp"
    69             android:layout_marginRight="10dp"
    70             android:text="@string/fxaccount_create_account_policy_text"
    71             android:textColorLink="@color/fxaccount_linkified_textColorLinkSubdued" />
    73         <LinearLayout style="@style/FxAccountSpacer" />
    75         <ImageView
    76             style="@style/FxAccountIcon"
    77             android:contentDescription="@string/fxaccount_empty_contentDescription" />
    78     </LinearLayout>
    80 </ScrollView>

mercurial