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

23 lines
834 B
XML
Raw Normal View History

2014-03-31 20:04:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
2014-04-01 15:04:54 +02:00
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:paddingRight="16dp"
android:paddingLeft="16dp">
2014-03-31 20:04:05 +02:00
<CheckBox
2014-03-31 20:04:05 +02:00
android:id="@+id/sign"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/label_sign"/>
2014-03-31 20:04:05 +02:00
<org.sufficientlysecure.keychain.ui.widget.EncryptKeyCompletionView
android:id="@+id/recipient_list"
2014-03-31 20:04:05 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
2014-03-31 20:04:05 +02:00
</LinearLayout>