mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
fd0bc71e4a
========
306fb330a9
Author: Nick Alexander <nalexander@mozilla.com>
Date: Tue Jun 3 15:29:55 2014 -0700
Bug 993136 - Fix TestSyncConfiguration.
47 lines
1.6 KiB
XML
47 lines
1.6 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" >
|
|
|
|
<TextView
|
|
style="@style/FxAccountHeaderItem"
|
|
android:text="@string/fxaccount_account_verified_sub_header" >
|
|
</TextView>
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="45dp"
|
|
android:contentDescription="@string/fxaccount_empty_contentDescription"
|
|
android:src="@drawable/fxaccount_checkbox" >
|
|
</ImageView>
|
|
|
|
<TextView
|
|
style="@style/FxAccountTextItem"
|
|
android:layout_marginBottom="40dp"
|
|
android:text="@string/fxaccount_account_verified_description"
|
|
android:textSize="18sp" />
|
|
|
|
<Button
|
|
android:id="@+id/button"
|
|
style="@style/FxAccountButton"
|
|
android:text="@string/fxaccount_back_to_browsing" />
|
|
|
|
<LinearLayout style="@style/FxAccountSpacer" />
|
|
|
|
<ImageView
|
|
style="@style/FxAccountIcon"
|
|
android:contentDescription="@string/fxaccount_empty_contentDescription" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|