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 | <merge xmlns:android="http://schemas.android.com/apk/res/android"> |
michael@0 | 7 | |
michael@0 | 8 | <LinearLayout android:layout_width="wrap_content" |
michael@0 | 9 | android:layout_height="wrap_content" |
michael@0 | 10 | android:orientation="horizontal" |
michael@0 | 11 | android:padding="@dimen/doorhanger_padding"> |
michael@0 | 12 | |
michael@0 | 13 | <ImageView android:id="@+id/doorhanger_icon" |
michael@0 | 14 | android:layout_width="wrap_content" |
michael@0 | 15 | android:layout_height="wrap_content" |
michael@0 | 16 | android:paddingRight="@dimen/doorhanger_padding" |
michael@0 | 17 | android:visibility="gone"/> |
michael@0 | 18 | |
michael@0 | 19 | <TextView android:id="@+id/doorhanger_title" |
michael@0 | 20 | android:focusable="true" |
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:textColor="@color/doorhanger_text" |
michael@0 | 25 | android:textColorLink="@color/doorhanger_link"/> |
michael@0 | 26 | |
michael@0 | 27 | </LinearLayout> |
michael@0 | 28 | |
michael@0 | 29 | <LinearLayout android:id="@+id/doorhanger_inputs" |
michael@0 | 30 | android:layout_width="wrap_content" |
michael@0 | 31 | android:layout_height="wrap_content" |
michael@0 | 32 | android:orientation="vertical" |
michael@0 | 33 | android:gravity="right" |
michael@0 | 34 | android:visibility="gone"/> |
michael@0 | 35 | |
michael@0 | 36 | <CheckBox android:id="@+id/doorhanger_checkbox" |
michael@0 | 37 | android:layout_width="fill_parent" |
michael@0 | 38 | android:layout_height="wrap_content" |
michael@0 | 39 | android:checked="true" |
michael@0 | 40 | android:textColor="@color/doorhanger_text" |
michael@0 | 41 | android:visibility="gone"/> |
michael@0 | 42 | |
michael@0 | 43 | <View android:id="@+id/divider_choices" |
michael@0 | 44 | android:layout_width="fill_parent" |
michael@0 | 45 | android:layout_height="1dp" |
michael@0 | 46 | android:visibility="gone"/> |
michael@0 | 47 | |
michael@0 | 48 | <LinearLayout android:id="@+id/doorhanger_choices" |
michael@0 | 49 | android:layout_width="fill_parent" |
michael@0 | 50 | android:layout_height="wrap_content" |
michael@0 | 51 | android:orientation="horizontal" |
michael@0 | 52 | android:visibility="gone"/> |
michael@0 | 53 | |
michael@0 | 54 | <View android:id="@+id/divider_doorhanger" |
michael@0 | 55 | android:layout_width="fill_parent" |
michael@0 | 56 | android:layout_height="1dp" |
michael@0 | 57 | android:background="#FFFF9500" |
michael@0 | 58 | android:visibility="gone"/> |
michael@0 | 59 | |
michael@0 | 60 | </merge> |