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"
|
2014-10-08 17:32:32 +02:00
|
|
|
android:id="@+id/result_main_layout"
|
2014-04-14 01:11:08 +02:00
|
|
|
android:orientation="vertical"
|
2014-03-29 00:11:07 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-08 17:32:32 +02:00
|
|
|
android:background="@color/holo_gray_bright">
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-10-15 23:22:08 +02:00
|
|
|
<LinearLayout
|
2014-10-08 17:32:32 +02:00
|
|
|
android:orientation="vertical"
|
2014-05-06 19:18:32 +02:00
|
|
|
android:layout_width="match_parent"
|
2014-03-29 00:11:07 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-10-08 17:32:32 +02:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp">
|
2014-05-06 19:18:32 +02:00
|
|
|
|
2014-10-08 17:32:32 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2014-04-14 01:11:08 +02:00
|
|
|
|
2014-10-08 17:32:32 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/result_encryption_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/status_lock_open"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_encryption_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:text="Not Encrypted (set in-code)"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
</LinearLayout>
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-10-08 17:32:32 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2014-03-29 00:11:07 +01:00
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
<ImageView
|
2014-10-08 17:32:32 +02:00
|
|
|
android:id="@+id/result_signature_icon"
|
2014-04-14 01:11:08 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-08 17:32:32 +02:00
|
|
|
android:src="@drawable/status_signature_unverified_cutout"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2014-04-14 01:11:08 +02:00
|
|
|
|
2014-10-08 17:32:32 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_signature_text"
|
2014-04-14 01:11:08 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-08 17:32:32 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:text="Signed by (set in-code)"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/result_signature_divider1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:layout_marginLeft="32dp"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/result_signature_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:clickable="true"
|
|
|
|
android:layout_marginLeft="32dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
style="@style/SelectableItem"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_signature_name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Alice (set in-code)" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_signature_email"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="alice@example.com (set in-code)"
|
|
|
|
android:gravity="center_vertical" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="1dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/result_signature_action"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="Show"
|
|
|
|
android:drawableRight="@drawable/ic_action_accounts"
|
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
style="@style/SelectableItem" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/result_signature_divider2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:layout_marginLeft="32dp"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider" />
|
2014-04-16 00:18:00 +02:00
|
|
|
|
2014-04-14 01:11:08 +02:00
|
|
|
</LinearLayout>
|