Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 2 | <!-- |
michael@0 | 3 | This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | --> |
michael@0 | 7 | |
michael@0 | 8 | <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
michael@0 | 9 | android:layout_width="fill_parent" |
michael@0 | 10 | android:layout_height="fill_parent" |
michael@0 | 11 | android:fillViewport="true" > |
michael@0 | 12 | |
michael@0 | 13 | <LinearLayout |
michael@0 | 14 | android:id="@+id/existing_user" |
michael@0 | 15 | style="@style/FxAccountMiddle" > |
michael@0 | 16 | |
michael@0 | 17 | <TextView |
michael@0 | 18 | style="@style/FxAccountHeaderItem" |
michael@0 | 19 | android:text="@string/fxaccount_status_header" > |
michael@0 | 20 | </TextView> |
michael@0 | 21 | |
michael@0 | 22 | <TextView |
michael@0 | 23 | android:id="@+id/email" |
michael@0 | 24 | style="@style/FxAccountTextItem" > |
michael@0 | 25 | </TextView> |
michael@0 | 26 | |
michael@0 | 27 | <TextView |
michael@0 | 28 | android:id="@+id/sync_status_text" |
michael@0 | 29 | style="@style/FxAccountHeaderItem" |
michael@0 | 30 | android:text="@string/fxaccount_status_sync" > |
michael@0 | 31 | </TextView> |
michael@0 | 32 | |
michael@0 | 33 | <ViewFlipper |
michael@0 | 34 | android:id="@+id/connection_status_view" |
michael@0 | 35 | style="@style/FxAccountTextItem" |
michael@0 | 36 | android:layout_width="fill_parent" |
michael@0 | 37 | android:layout_height="wrap_content" > |
michael@0 | 38 | |
michael@0 | 39 | <TextView |
michael@0 | 40 | android:id="@+id/needs_upgrade_view" |
michael@0 | 41 | style="@style/FxAccountTextItem" |
michael@0 | 42 | android:layout_width="fill_parent" |
michael@0 | 43 | android:layout_height="wrap_content" |
michael@0 | 44 | android:layout_gravity="center_horizontal" |
michael@0 | 45 | android:background="#fad4d2" |
michael@0 | 46 | android:drawablePadding="10dp" |
michael@0 | 47 | android:drawableStart="@drawable/fxaccount_sync_error" |
michael@0 | 48 | android:gravity="center_vertical" |
michael@0 | 49 | android:padding="10dp" |
michael@0 | 50 | android:text="@string/fxaccount_status_needs_upgrade" > |
michael@0 | 51 | </TextView> |
michael@0 | 52 | |
michael@0 | 53 | <TextView |
michael@0 | 54 | android:id="@+id/sign_in_view" |
michael@0 | 55 | style="@style/FxAccountTextItem" |
michael@0 | 56 | android:layout_width="fill_parent" |
michael@0 | 57 | android:layout_height="wrap_content" |
michael@0 | 58 | android:layout_gravity="center_horizontal" |
michael@0 | 59 | android:background="#fad4d2" |
michael@0 | 60 | android:drawablePadding="10dp" |
michael@0 | 61 | android:drawableStart="@drawable/fxaccount_sync_error" |
michael@0 | 62 | android:gravity="center_vertical" |
michael@0 | 63 | android:padding="10dp" |
michael@0 | 64 | android:text="@string/fxaccount_status_needs_credentials" > |
michael@0 | 65 | </TextView> |
michael@0 | 66 | |
michael@0 | 67 | <TextView |
michael@0 | 68 | android:id="@+id/unverified_view" |
michael@0 | 69 | style="@style/FxAccountTextItem" |
michael@0 | 70 | android:layout_width="fill_parent" |
michael@0 | 71 | android:layout_height="wrap_content" |
michael@0 | 72 | android:layout_gravity="center_horizontal" |
michael@0 | 73 | android:background="#fad4d2" |
michael@0 | 74 | android:drawablePadding="10dp" |
michael@0 | 75 | android:drawableStart="@drawable/fxaccount_sync_error" |
michael@0 | 76 | android:gravity="center_vertical" |
michael@0 | 77 | android:padding="10dp" |
michael@0 | 78 | android:text="@string/fxaccount_status_needs_verification" > |
michael@0 | 79 | </TextView> |
michael@0 | 80 | </ViewFlipper> |
michael@0 | 81 | |
michael@0 | 82 | <CheckBox |
michael@0 | 83 | android:id="@+id/bookmarks_checkbox" |
michael@0 | 84 | style="@style/FxAccountCheckBox" |
michael@0 | 85 | android:text="@string/fxaccount_status_bookmarks" /> |
michael@0 | 86 | |
michael@0 | 87 | <CheckBox |
michael@0 | 88 | android:id="@+id/history_checkbox" |
michael@0 | 89 | style="@style/FxAccountCheckBox" |
michael@0 | 90 | android:text="@string/fxaccount_status_history" /> |
michael@0 | 91 | |
michael@0 | 92 | <CheckBox |
michael@0 | 93 | android:id="@+id/tabs_checkbox" |
michael@0 | 94 | style="@style/FxAccountCheckBox" |
michael@0 | 95 | android:text="@string/fxaccount_status_tabs" /> |
michael@0 | 96 | |
michael@0 | 97 | <CheckBox |
michael@0 | 98 | android:id="@+id/passwords_checkbox" |
michael@0 | 99 | style="@style/FxAccountCheckBox" |
michael@0 | 100 | android:text="@string/fxaccount_status_passwords" /> |
michael@0 | 101 | |
michael@0 | 102 | <TextView |
michael@0 | 103 | style="@style/FxAccountHeaderItem" |
michael@0 | 104 | android:text="@string/fxaccount_status_legal" > |
michael@0 | 105 | </TextView> |
michael@0 | 106 | |
michael@0 | 107 | <TextView |
michael@0 | 108 | android:id="@+id/fxaccount_status_linktos" |
michael@0 | 109 | style="@style/FxAccountLinkifiedItem" |
michael@0 | 110 | android:text="@string/fxaccount_policy_linktos" /> |
michael@0 | 111 | |
michael@0 | 112 | <TextView |
michael@0 | 113 | android:id="@+id/fxaccount_status_linkprivacy" |
michael@0 | 114 | style="@style/FxAccountLinkifiedItem" |
michael@0 | 115 | android:text="@string/fxaccount_policy_linkprivacy" /> |
michael@0 | 116 | </LinearLayout> |
michael@0 | 117 | |
michael@0 | 118 | </ScrollView> |