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_send_tab" /> |
michael@0 | 12 | |
michael@0 | 13 | <LinearLayout |
michael@0 | 14 | android:layout_width="fill_parent" |
michael@0 | 15 | android:layout_height="wrap_content" |
michael@0 | 16 | android:orientation="vertical" |
michael@0 | 17 | android:padding="@dimen/SyncSpace" > |
michael@0 | 18 | |
michael@0 | 19 | <TextView |
michael@0 | 20 | android:id="@+id/title" |
michael@0 | 21 | android:layout_width="fill_parent" |
michael@0 | 22 | android:layout_height="wrap_content" |
michael@0 | 23 | android:textAppearance="?android:attr/textAppearanceMedium" |
michael@0 | 24 | android:text="@string/sync_title_send_tab" /> |
michael@0 | 25 | <TextView |
michael@0 | 26 | android:id="@+id/uri" |
michael@0 | 27 | android:layout_width="fill_parent" |
michael@0 | 28 | android:layout_height="wrap_content" |
michael@0 | 29 | android:textAppearance="?android:attr/textAppearanceSmall" |
michael@0 | 30 | android:text="@string/sync_title_send_tab" /> |
michael@0 | 31 | </LinearLayout> |
michael@0 | 32 | |
michael@0 | 33 | <ListView |
michael@0 | 34 | android:id="@+id/device_list" |
michael@0 | 35 | style="@style/SyncMiddle" |
michael@0 | 36 | android:padding="0dp" > |
michael@0 | 37 | </ListView> |
michael@0 | 38 | |
michael@0 | 39 | <LinearLayout |
michael@0 | 40 | style="@style/SyncBottomContainer" > |
michael@0 | 41 | |
michael@0 | 42 | <LinearLayout |
michael@0 | 43 | style="@style/SyncBottom" > |
michael@0 | 44 | |
michael@0 | 45 | <Button |
michael@0 | 46 | style="@style/SyncButton" |
michael@0 | 47 | android:id="@+id/send_button" |
michael@0 | 48 | android:onClick="sendClickHandler" |
michael@0 | 49 | android:clickable="false" |
michael@0 | 50 | android:enabled="false" |
michael@0 | 51 | android:text="@string/sync_button_send" /> |
michael@0 | 52 | </LinearLayout> |
michael@0 | 53 | |
michael@0 | 54 | </LinearLayout> |
michael@0 | 55 | </LinearLayout> |