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 | android:layout_width="fill_parent" |
michael@0 | 8 | android:layout_height="wrap_content" |
michael@0 | 9 | android:orientation="horizontal" |
michael@0 | 10 | android:padding="@dimen/doorhanger_padding"> |
michael@0 | 11 | |
michael@0 | 12 | <ImageView android:id="@+id/larry" |
michael@0 | 13 | android:layout_width="wrap_content" |
michael@0 | 14 | android:layout_height="wrap_content" |
michael@0 | 15 | android:src="@drawable/larry" |
michael@0 | 16 | android:paddingRight="@dimen/doorhanger_padding"/> |
michael@0 | 17 | |
michael@0 | 18 | <LinearLayout android:layout_width="0dip" |
michael@0 | 19 | android:layout_height="wrap_content" |
michael@0 | 20 | android:layout_weight="1.0" |
michael@0 | 21 | android:orientation="vertical"> |
michael@0 | 22 | |
michael@0 | 23 | <TextView android:layout_width="wrap_content" |
michael@0 | 24 | android:layout_height="wrap_content" |
michael@0 | 25 | android:textSize="14sp" |
michael@0 | 26 | android:textColor="@color/doorhanger_text" |
michael@0 | 27 | android:text="@string/identity_connected_to"/> |
michael@0 | 28 | |
michael@0 | 29 | <TextView android:id="@+id/host" |
michael@0 | 30 | android:layout_width="wrap_content" |
michael@0 | 31 | android:layout_height="wrap_content" |
michael@0 | 32 | android:textSize="20sp" |
michael@0 | 33 | android:textColor="@color/doorhanger_text" |
michael@0 | 34 | android:textStyle="bold"/> |
michael@0 | 35 | |
michael@0 | 36 | <TextView android:layout_width="wrap_content" |
michael@0 | 37 | android:layout_height="wrap_content" |
michael@0 | 38 | android:textSize="14sp" |
michael@0 | 39 | android:textColor="@color/doorhanger_text" |
michael@0 | 40 | android:text="@string/identity_run_by" |
michael@0 | 41 | android:paddingTop="12dip"/> |
michael@0 | 42 | |
michael@0 | 43 | <TextView android:id="@+id/owner" |
michael@0 | 44 | android:layout_width="wrap_content" |
michael@0 | 45 | android:layout_height="wrap_content" |
michael@0 | 46 | android:textColor="@color/doorhanger_text" |
michael@0 | 47 | android:textSize="16sp" |
michael@0 | 48 | android:textStyle="bold"/> |
michael@0 | 49 | |
michael@0 | 50 | <TextView android:id="@+id/verifier" |
michael@0 | 51 | android:layout_width="wrap_content" |
michael@0 | 52 | android:layout_height="wrap_content" |
michael@0 | 53 | android:textSize="14sp" |
michael@0 | 54 | android:textColor="@color/doorhanger_text" |
michael@0 | 55 | android:paddingTop="12dip"/> |
michael@0 | 56 | |
michael@0 | 57 | </LinearLayout> |
michael@0 | 58 | |
michael@0 | 59 | </LinearLayout> |