2011-12-21 16:44:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-05-21 11:12:37 +00:00
|
|
|
<!-- 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/. -->
|
|
|
|
|
2012-08-30 19:12:56 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
style="@style/SyncContainer" >
|
2012-01-25 23:53:13 +00:00
|
|
|
|
2012-07-26 15:47:25 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/SyncTop"
|
2012-01-25 23:53:13 +00:00
|
|
|
android:text="@string/sync_title_connect" />
|
2011-12-21 16:44:08 +00:00
|
|
|
|
2012-01-14 17:20:31 +00:00
|
|
|
<ScrollView
|
2012-08-30 19:12:56 +00:00
|
|
|
style="@style/SyncMiddle"
|
|
|
|
android:padding="@dimen/SyncSpace" >
|
2012-01-14 17:20:31 +00:00
|
|
|
|
2012-02-21 19:07:55 +00:00
|
|
|
<LinearLayout
|
2012-08-30 19:12:56 +00:00
|
|
|
style="@style/SyncLayout.Vertical" >
|
2012-01-14 17:20:31 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-01-25 23:53:13 +00:00
|
|
|
android:id="@+id/setup_header"
|
|
|
|
style="@style/SyncTextItem"
|
|
|
|
android:gravity="left"
|
2012-08-30 19:12:56 +00:00
|
|
|
android:paddingBottom="@dimen/SyncSpace"
|
2012-01-25 23:53:13 +00:00
|
|
|
android:text="@string/sync_subtitle_header"
|
2012-05-15 18:13:18 +00:00
|
|
|
android:textStyle="bold"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusDown="@+id/setup_subtitle" />
|
2012-08-30 19:12:56 +00:00
|
|
|
|
2012-01-14 17:20:31 +00:00
|
|
|
<TextView
|
2012-05-15 18:13:18 +00:00
|
|
|
android:id="@id/setup_subtitle"
|
2012-01-25 23:53:13 +00:00
|
|
|
style="@style/SyncTextItem"
|
|
|
|
android:gravity="left"
|
2012-05-15 18:13:18 +00:00
|
|
|
android:text="@string/sync_subtitle_connect"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusDown="@+id/setup_showme"
|
|
|
|
android:nextFocusUp="@id/setup_header" />
|
2012-01-14 17:20:31 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-05-15 18:13:18 +00:00
|
|
|
android:id="@id/setup_showme"
|
2012-01-25 23:53:13 +00:00
|
|
|
style="@style/SyncLinkItem"
|
2012-08-30 19:12:56 +00:00
|
|
|
android:paddingBottom="@dimen/SyncSpace"
|
2012-01-25 23:53:13 +00:00
|
|
|
android:onClick="showClickHandler"
|
2012-05-15 18:13:18 +00:00
|
|
|
android:text="@string/sync_link_show"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusDown="@+id/text_pin1"
|
|
|
|
android:nextFocusUp="@id/setup_subtitle" />
|
2012-01-14 17:20:31 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2012-01-25 23:53:13 +00:00
|
|
|
style="@style/SyncLayout"
|
2012-02-21 19:07:55 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-08-30 19:12:56 +00:00
|
|
|
android:paddingBottom="@dimen/SyncSpace"
|
2012-01-25 23:53:13 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
2012-05-15 18:13:18 +00:00
|
|
|
android:id="@id/text_pin1"
|
|
|
|
style="@style/SyncPinText"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusDown="@+id/text_pin2"
|
|
|
|
android:nextFocusUp="@id/setup_showme" />
|
2012-01-25 23:53:13 +00:00
|
|
|
<TextView
|
2012-05-15 18:13:18 +00:00
|
|
|
android:id="@id/text_pin2"
|
|
|
|
style="@style/SyncPinText"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusDown="@+id/text_pin3"
|
|
|
|
android:nextFocusUp="@id/text_pin1" />
|
2012-01-25 23:53:13 +00:00
|
|
|
<TextView
|
2012-05-15 18:13:18 +00:00
|
|
|
android:id="@id/text_pin3"
|
|
|
|
style="@style/SyncPinText"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusDown="@+id/link_nodevice"
|
|
|
|
android:nextFocusUp="@id/text_pin2" />
|
2012-01-14 17:20:31 +00:00
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
2012-05-15 18:13:18 +00:00
|
|
|
android:id="@id/link_nodevice"
|
2012-01-25 23:53:13 +00:00
|
|
|
style="@style/SyncLinkItem"
|
|
|
|
android:gravity="center"
|
|
|
|
android:onClick="manualClickHandler"
|
2012-05-15 18:13:18 +00:00
|
|
|
android:text="@string/sync_link_advancedsetup"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusUp="@id/text_pin3" />
|
2012-02-21 19:07:55 +00:00
|
|
|
</LinearLayout>
|
2012-01-14 17:20:31 +00:00
|
|
|
</ScrollView>
|
2012-08-30 19:12:56 +00:00
|
|
|
|
2012-01-25 23:53:13 +00:00
|
|
|
<LinearLayout
|
2013-02-27 04:08:56 +00:00
|
|
|
style="@style/SyncBottomContainer" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
style="@style/SyncBottom"
|
|
|
|
android:orientation="horizontal" >
|
2013-02-23 00:05:36 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
style="@style/SyncButton"
|
|
|
|
android:onClick="cancelClickHandler"
|
|
|
|
android:text="@string/sync_button_cancel" />
|
|
|
|
</LinearLayout>
|
2012-08-30 19:12:56 +00:00
|
|
|
|
2012-01-25 23:53:13 +00:00
|
|
|
</LinearLayout>
|
2012-08-30 19:12:56 +00:00
|
|
|
</LinearLayout>
|