1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/layout/site_identity.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,59 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 1.10 + android:layout_width="fill_parent" 1.11 + android:layout_height="wrap_content" 1.12 + android:orientation="horizontal" 1.13 + android:padding="@dimen/doorhanger_padding"> 1.14 + 1.15 + <ImageView android:id="@+id/larry" 1.16 + android:layout_width="wrap_content" 1.17 + android:layout_height="wrap_content" 1.18 + android:src="@drawable/larry" 1.19 + android:paddingRight="@dimen/doorhanger_padding"/> 1.20 + 1.21 + <LinearLayout android:layout_width="0dip" 1.22 + android:layout_height="wrap_content" 1.23 + android:layout_weight="1.0" 1.24 + android:orientation="vertical"> 1.25 + 1.26 + <TextView android:layout_width="wrap_content" 1.27 + android:layout_height="wrap_content" 1.28 + android:textSize="14sp" 1.29 + android:textColor="@color/doorhanger_text" 1.30 + android:text="@string/identity_connected_to"/> 1.31 + 1.32 + <TextView android:id="@+id/host" 1.33 + android:layout_width="wrap_content" 1.34 + android:layout_height="wrap_content" 1.35 + android:textSize="20sp" 1.36 + android:textColor="@color/doorhanger_text" 1.37 + android:textStyle="bold"/> 1.38 + 1.39 + <TextView android:layout_width="wrap_content" 1.40 + android:layout_height="wrap_content" 1.41 + android:textSize="14sp" 1.42 + android:textColor="@color/doorhanger_text" 1.43 + android:text="@string/identity_run_by" 1.44 + android:paddingTop="12dip"/> 1.45 + 1.46 + <TextView android:id="@+id/owner" 1.47 + android:layout_width="wrap_content" 1.48 + android:layout_height="wrap_content" 1.49 + android:textColor="@color/doorhanger_text" 1.50 + android:textSize="16sp" 1.51 + android:textStyle="bold"/> 1.52 + 1.53 + <TextView android:id="@+id/verifier" 1.54 + android:layout_width="wrap_content" 1.55 + android:layout_height="wrap_content" 1.56 + android:textSize="14sp" 1.57 + android:textColor="@color/doorhanger_text" 1.58 + android:paddingTop="12dip"/> 1.59 + 1.60 + </LinearLayout> 1.61 + 1.62 +</LinearLayout>