2014-03-29 00:11:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-04-14 01:11:08 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/result"
|
|
|
|
android:orientation="vertical"
|
2014-03-29 00:11:07 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp"
|
2014-05-06 19:18:32 +02:00
|
|
|
android:background="@color/result_purple">
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-05-06 19:18:32 +02:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider"
|
|
|
|
android:layout_marginTop="4dp" />
|
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_text"
|
2014-03-29 00:11:07 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-14 01:11:08 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:text="result text"
|
2014-05-06 19:18:32 +02:00
|
|
|
android:textColor="@color/white"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider" />
|
2014-04-14 01:11:08 +02:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/result_signature"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="true"
|
2014-05-06 19:18:32 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginTop="8dp">
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
<RelativeLayout
|
2014-03-29 00:11:07 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:id="@+id/result_signature_image">
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/signed_large" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signature_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/overlay_error" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserId"
|
2014-03-29 00:11:07 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:layout_marginLeft="4dp"
|
2014-04-14 01:11:08 +02:00
|
|
|
android:layout_gravity="left"
|
|
|
|
android:text="@string/label_main_user_id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:layout_toRightOf="@+id/result_signature_image"
|
|
|
|
android:textColor="@color/white" />
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mainUserIdRest"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:layout_marginLeft="4dp"
|
2014-04-14 01:11:08 +02:00
|
|
|
android:layout_gravity="left"
|
|
|
|
android:text="Main User Id Rest"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_below="@+id/mainUserId"
|
2014-04-15 22:37:36 +02:00
|
|
|
android:layout_toRightOf="@+id/result_signature_image"
|
|
|
|
android:textColor="@color/white" />
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-06-30 19:09:13 +02:00
|
|
|
<Button
|
2014-05-06 19:18:32 +02:00
|
|
|
android:id="@+id/lookup_key"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/btn_lookup_key"
|
2014-06-30 19:09:13 +02:00
|
|
|
android:drawableRight="@drawable/ic_action_download"
|
2014-05-06 19:18:32 +02:00
|
|
|
android:layout_alignParentRight="true"
|
2014-06-30 19:09:13 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="@drawable/button_edgy"/>
|
2014-04-15 22:37:36 +02:00
|
|
|
|
2014-05-06 19:18:32 +02:00
|
|
|
</RelativeLayout>
|
2014-04-16 00:18:00 +02:00
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
</LinearLayout>
|