open-keychain/OpenKeychain/src/main/res/layout/encrypt_asymmetric_fragment.xml

39 lines
1.4 KiB
XML
Raw Normal View History

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"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:paddingRight="16dp"
android:paddingLeft="16dp">
2014-03-31 20:04:05 +02:00
2014-08-04 00:49:16 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2014-08-04 00:49:16 +02:00
android:padding="0dp"
android:layout_margin="0dp"
style="@android:style/Widget.EditText">
2014-03-31 20:04:05 +02:00
<TextView
2014-08-04 00:49:16 +02:00
android:paddingLeft="12dp"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/label_asymmetric_from" />
<Spinner
2014-08-04 00:49:16 +02:00
android:id="@+id/sign"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" />
</LinearLayout>
2014-03-31 20:04:05 +02:00
<org.sufficientlysecure.keychain.ui.widget.EncryptKeyCompletionView
2014-08-04 00:49:16 +02:00
android:id="@+id/recipient_list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2014-03-31 20:04:05 +02:00
</LinearLayout>