2014-01-17 02:35:09 +00:00
|
|
|
<?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
|
|
|
|
android:id="@+id/existing_user"
|
|
|
|
style="@style/FxAccountMiddle" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/FxAccountHeaderItem"
|
2014-01-31 23:57:41 +00:00
|
|
|
android:text="@string/fxaccount_status_header" >
|
2014-01-17 02:35:09 +00:00
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/email"
|
2014-01-31 23:57:41 +00:00
|
|
|
style="@style/FxAccountTextItem" >
|
2014-01-17 02:35:09 +00:00
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
2014-01-29 21:02:44 +00:00
|
|
|
android:id="@+id/sync_status_text"
|
|
|
|
style="@style/FxAccountHeaderItem"
|
|
|
|
android:text="@string/fxaccount_status_sync" >
|
2014-01-17 02:35:09 +00:00
|
|
|
</TextView>
|
|
|
|
|
2014-01-24 02:32:34 +00:00
|
|
|
<ViewFlipper
|
2014-01-17 02:35:09 +00:00
|
|
|
android:id="@+id/connection_status_view"
|
|
|
|
style="@style/FxAccountTextItem"
|
2014-01-29 21:02:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
2014-01-17 02:35:09 +00:00
|
|
|
|
|
|
|
<TextView
|
2014-01-29 21:02:44 +00:00
|
|
|
android:id="@+id/needs_upgrade_view"
|
2014-01-17 02:35:09 +00:00
|
|
|
style="@style/FxAccountTextItem"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="#fad4d2"
|
|
|
|
android:drawablePadding="10dp"
|
|
|
|
android:drawableStart="@drawable/fxaccount_sync_error"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:padding="10dp"
|
2014-01-24 02:32:34 +00:00
|
|
|
android:text="@string/fxaccount_status_needs_upgrade" >
|
2014-01-17 02:35:09 +00:00
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/sign_in_view"
|
|
|
|
style="@style/FxAccountTextItem"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="#fad4d2"
|
|
|
|
android:drawablePadding="10dp"
|
|
|
|
android:drawableStart="@drawable/fxaccount_sync_error"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:padding="10dp"
|
2014-01-24 02:32:34 +00:00
|
|
|
android:text="@string/fxaccount_status_needs_credentials" >
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/unverified_view"
|
|
|
|
style="@style/FxAccountTextItem"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="#fad4d2"
|
|
|
|
android:drawablePadding="10dp"
|
|
|
|
android:drawableStart="@drawable/fxaccount_sync_error"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:text="@string/fxaccount_status_needs_verification" >
|
2014-01-17 02:35:09 +00:00
|
|
|
</TextView>
|
2014-01-24 02:32:34 +00:00
|
|
|
</ViewFlipper>
|
2014-01-17 02:35:09 +00:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/bookmarks_checkbox"
|
2014-01-31 01:58:56 +00:00
|
|
|
style="@style/FxAccountCheckBox"
|
2014-01-17 02:35:09 +00:00
|
|
|
android:text="@string/fxaccount_status_bookmarks" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/history_checkbox"
|
2014-01-31 01:58:56 +00:00
|
|
|
style="@style/FxAccountCheckBox"
|
2014-01-17 02:35:09 +00:00
|
|
|
android:text="@string/fxaccount_status_history" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/tabs_checkbox"
|
2014-01-31 01:58:56 +00:00
|
|
|
style="@style/FxAccountCheckBox"
|
2014-01-17 02:35:09 +00:00
|
|
|
android:text="@string/fxaccount_status_tabs" />
|
|
|
|
|
2014-01-31 01:58:56 +00:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/passwords_checkbox"
|
|
|
|
style="@style/FxAccountCheckBox"
|
|
|
|
android:text="@string/fxaccount_status_passwords" />
|
|
|
|
|
2014-01-29 21:02:44 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/FxAccountHeaderItem"
|
|
|
|
android:text="@string/fxaccount_status_legal" >
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
2014-01-31 01:59:30 +00:00
|
|
|
android:id="@+id/fxaccount_status_linktos"
|
|
|
|
style="@style/FxAccountLinkifiedItem"
|
|
|
|
android:text="@string/fxaccount_policy_linktos" />
|
2014-01-29 21:02:44 +00:00
|
|
|
|
|
|
|
<TextView
|
2014-01-31 01:59:30 +00:00
|
|
|
android:id="@+id/fxaccount_status_linkprivacy"
|
|
|
|
style="@style/FxAccountLinkifiedItem"
|
|
|
|
android:text="@string/fxaccount_policy_linkprivacy" />
|
2014-01-17 02:35:09 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-31 01:58:56 +00:00
|
|
|
</ScrollView>
|