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 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
michael@0 | 7 | style="@style/SyncContainer" > |
michael@0 | 8 | |
michael@0 | 9 | <TextView |
michael@0 | 10 | style="@style/SyncTop" |
michael@0 | 11 | android:text="@string/sync_title_connect" /> |
michael@0 | 12 | |
michael@0 | 13 | <ScrollView |
michael@0 | 14 | style="@style/SyncMiddle" |
michael@0 | 15 | android:padding="@dimen/SyncSpace" > |
michael@0 | 16 | |
michael@0 | 17 | <LinearLayout |
michael@0 | 18 | style="@style/SyncLayout.Vertical" > |
michael@0 | 19 | |
michael@0 | 20 | <TextView |
michael@0 | 21 | android:id="@+id/setup_header" |
michael@0 | 22 | style="@style/SyncTextItem" |
michael@0 | 23 | android:gravity="left" |
michael@0 | 24 | android:paddingBottom="@dimen/SyncSpace" |
michael@0 | 25 | android:text="@string/sync_subtitle_header" |
michael@0 | 26 | android:textStyle="bold" |
michael@0 | 27 | android:focusable="true" |
michael@0 | 28 | android:nextFocusDown="@+id/setup_subtitle" /> |
michael@0 | 29 | |
michael@0 | 30 | <TextView |
michael@0 | 31 | android:id="@id/setup_subtitle" |
michael@0 | 32 | style="@style/SyncTextItem" |
michael@0 | 33 | android:gravity="left" |
michael@0 | 34 | android:text="@string/sync_subtitle_connect" |
michael@0 | 35 | android:focusable="true" |
michael@0 | 36 | android:nextFocusDown="@+id/setup_showme" |
michael@0 | 37 | android:nextFocusUp="@id/setup_header" /> |
michael@0 | 38 | |
michael@0 | 39 | <TextView |
michael@0 | 40 | android:id="@id/setup_showme" |
michael@0 | 41 | style="@style/SyncLinkItem" |
michael@0 | 42 | android:paddingBottom="@dimen/SyncSpace" |
michael@0 | 43 | android:onClick="showClickHandler" |
michael@0 | 44 | android:text="@string/sync_link_show" |
michael@0 | 45 | android:focusable="true" |
michael@0 | 46 | android:nextFocusDown="@+id/text_pin1" |
michael@0 | 47 | android:nextFocusUp="@id/setup_subtitle" /> |
michael@0 | 48 | |
michael@0 | 49 | <LinearLayout |
michael@0 | 50 | style="@style/SyncLayout" |
michael@0 | 51 | android:layout_height="wrap_content" |
michael@0 | 52 | android:paddingBottom="@dimen/SyncSpace" |
michael@0 | 53 | android:orientation="vertical" > |
michael@0 | 54 | <TextView |
michael@0 | 55 | android:id="@id/text_pin1" |
michael@0 | 56 | style="@style/SyncPinText" |
michael@0 | 57 | android:focusable="true" |
michael@0 | 58 | android:nextFocusDown="@+id/text_pin2" |
michael@0 | 59 | android:nextFocusUp="@id/setup_showme" /> |
michael@0 | 60 | <TextView |
michael@0 | 61 | android:id="@id/text_pin2" |
michael@0 | 62 | style="@style/SyncPinText" |
michael@0 | 63 | android:focusable="true" |
michael@0 | 64 | android:nextFocusDown="@+id/text_pin3" |
michael@0 | 65 | android:nextFocusUp="@id/text_pin1" /> |
michael@0 | 66 | <TextView |
michael@0 | 67 | android:id="@id/text_pin3" |
michael@0 | 68 | style="@style/SyncPinText" |
michael@0 | 69 | android:focusable="true" |
michael@0 | 70 | android:nextFocusDown="@+id/link_nodevice" |
michael@0 | 71 | android:nextFocusUp="@id/text_pin2" /> |
michael@0 | 72 | </LinearLayout> |
michael@0 | 73 | <TextView |
michael@0 | 74 | android:id="@id/link_nodevice" |
michael@0 | 75 | style="@style/SyncLinkItem" |
michael@0 | 76 | android:gravity="center" |
michael@0 | 77 | android:onClick="manualClickHandler" |
michael@0 | 78 | android:text="@string/sync_link_advancedsetup" |
michael@0 | 79 | android:focusable="true" |
michael@0 | 80 | android:nextFocusUp="@id/text_pin3" /> |
michael@0 | 81 | </LinearLayout> |
michael@0 | 82 | </ScrollView> |
michael@0 | 83 | |
michael@0 | 84 | <LinearLayout |
michael@0 | 85 | style="@style/SyncBottomContainer" > |
michael@0 | 86 | |
michael@0 | 87 | <LinearLayout |
michael@0 | 88 | style="@style/SyncBottom" |
michael@0 | 89 | android:orientation="horizontal" > |
michael@0 | 90 | |
michael@0 | 91 | <Button |
michael@0 | 92 | style="@style/SyncButton" |
michael@0 | 93 | android:onClick="cancelClickHandler" |
michael@0 | 94 | android:text="@string/sync_button_cancel" /> |
michael@0 | 95 | </LinearLayout> |
michael@0 | 96 | |
michael@0 | 97 | </LinearLayout> |
michael@0 | 98 | </LinearLayout> |