2014-03-31 20:04:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-08-04 00:49:16 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:paddingTop="4dp"
|
2014-08-04 00:49:16 +02:00
|
|
|
android:paddingBottom="4dp"
|
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
|
android:paddingLeft="16dp">
|
2014-03-31 20:04:05 +02:00
|
|
|
|
2015-05-30 02:24:45 +02:00
|
|
|
<LinearLayout
|
2014-09-01 21:43:15 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:padding="0dp"
|
|
|
|
|
android:layout_margin="0dp">
|
|
|
|
|
|
|
|
|
|
<ViewAnimator
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/result_encryption_icon"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
|
android:inAnimation="@anim/fade_in"
|
|
|
|
|
android:outAnimation="@anim/fade_out">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/status_lock_open_24dp" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/status_lock_closed_24dp" />
|
|
|
|
|
|
|
|
|
|
</ViewAnimator>
|
|
|
|
|
|
|
|
|
|
<org.sufficientlysecure.keychain.ui.widget.EncryptKeyCompletionView
|
|
|
|
|
android:id="@+id/recipient_list"
|
|
|
|
|
android:layout_width="match_parent"
|
2015-12-22 01:52:47 +01:00
|
|
|
android:hint="@string/label_to"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:minHeight="56dip"
|
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-09-01 21:43:15 +02:00
|
|
|
|
2014-08-04 00:49:16 +02:00
|
|
|
<LinearLayout
|
2014-07-31 22:21:46 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2014-08-04 00:49:16 +02:00
|
|
|
android:padding="0dp"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:layout_margin="0dp">
|
2014-03-31 20:04:05 +02:00
|
|
|
|
2015-05-30 02:24:45 +02:00
|
|
|
<ViewAnimator
|
2014-08-04 00:49:16 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:id="@+id/result_signature_icon"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
|
android:inAnimation="@anim/fade_in"
|
|
|
|
|
android:outAnimation="@anim/fade_out">
|
2014-08-04 00:49:16 +02:00
|
|
|
|
2015-05-30 02:24:45 +02:00
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/status_signature_unverified_cutout_24dp"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/status_signature_verified_cutout_24dp"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</ViewAnimator>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-08-04 00:49:16 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:padding="0dp"
|
|
|
|
|
android:layout_margin="0dp"
|
|
|
|
|
style="@android:style/Widget.EditText">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2015-11-18 19:56:45 +01:00
|
|
|
android:textColor="@color/md_black_1000"
|
2015-05-30 02:24:45 +02:00
|
|
|
android:text="@string/label_asymmetric_from"
|
|
|
|
|
android:paddingRight="8dp"/>
|
|
|
|
|
|
|
|
|
|
<org.sufficientlysecure.keychain.ui.widget.SignKeySpinner
|
|
|
|
|
android:id="@+id/sign"
|
|
|
|
|
android:minHeight="56dip"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-07-20 17:09:34 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-03-31 20:04:05 +02:00
|
|
|
</LinearLayout>
|