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 | |
michael@0 | 16 | <LinearLayout |
michael@0 | 17 | style="@style/SyncLayout.Vertical" > |
michael@0 | 18 | |
michael@0 | 19 | <ProgressBar |
michael@0 | 20 | android:id="@+id/waiting_content1" |
michael@0 | 21 | style="@style/Widget.ProgressBar.Horizontal" |
michael@0 | 22 | android:layout_width="fill_parent" |
michael@0 | 23 | android:layout_height="wrap_content" |
michael@0 | 24 | android:indeterminateOnly="true" |
michael@0 | 25 | android:padding="@dimen/SyncSpace" /> |
michael@0 | 26 | |
michael@0 | 27 | <TextView |
michael@0 | 28 | style="@style/SyncTextItem" |
michael@0 | 29 | android:gravity="center" |
michael@0 | 30 | android:text="@string/sync_jpake_subtitle_waiting" /> |
michael@0 | 31 | </LinearLayout> |
michael@0 | 32 | </ScrollView> |
michael@0 | 33 | |
michael@0 | 34 | <LinearLayout |
michael@0 | 35 | style="@style/SyncBottomContainer"> |
michael@0 | 36 | |
michael@0 | 37 | <LinearLayout |
michael@0 | 38 | style="@style/SyncBottom"> |
michael@0 | 39 | |
michael@0 | 40 | <Button |
michael@0 | 41 | style="@style/SyncButton" |
michael@0 | 42 | android:onClick="cancelClickHandler" |
michael@0 | 43 | android:text="@string/sync_button_cancel" /> |
michael@0 | 44 | </LinearLayout> |
michael@0 | 45 | |
michael@0 | 46 | </LinearLayout> |
michael@0 | 47 | </LinearLayout> |