2014-08-01 17:47:07 +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"
|
2015-02-27 01:26:04 +01:00
|
|
|
android:paddingTop="16dp"
|
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
|
android:paddingRight="24dp">
|
2014-08-01 17:47:07 +02:00
|
|
|
|
2015-03-06 11:13:56 +05:30
|
|
|
<org.sufficientlysecure.keychain.ui.widget.EmailEditText
|
2014-08-01 17:47:07 +02:00
|
|
|
android:id="@+id/add_user_id_address"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:hint="@string/label_email"
|
|
|
|
|
android:imeOptions="actionNext"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
2015-03-09 18:12:44 +05:30
|
|
|
<org.sufficientlysecure.keychain.ui.widget.NameEditText
|
2014-08-01 17:47:07 +02:00
|
|
|
android:id="@+id/add_user_id_name"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:imeOptions="actionNext"
|
2014-09-22 00:10:55 +02:00
|
|
|
android:inputType="textAutoCorrect|textPersonName|textCapWords"
|
2014-08-01 17:47:07 +02:00
|
|
|
android:hint="@string/create_key_hint_full_name"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/add_user_id_comment"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-06-26 11:08:26 +02:00
|
|
|
android:textColor="?attr/colorTertiaryText"
|
2014-08-01 17:47:07 +02:00
|
|
|
android:singleLine="true"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:imeOptions="actionDone"
|
|
|
|
|
android:hint="@string/label_comment"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|