aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/add_user_id_dialog.xml
blob: b3969a2bd2739a25da322b635a2f5ae66cb93bf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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"
    android:paddingTop="16dp"
    android:paddingBottom="16dp"
    android:paddingLeft="24dp"
    android:paddingRight="24dp">

    <org.sufficientlysecure.keychain.ui.widget.EmailEditText
        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" />

    <org.sufficientlysecure.keychain.ui.widget.NameEditText
        android:id="@+id/add_user_id_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:imeOptions="actionNext"
        android:inputType="textAutoCorrect|textPersonName|textCapWords"
        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"
        android:textColor="?attr/colorTertiaryText"
        android:singleLine="true"
        android:lines="1"
        android:maxLines="1"
        android:imeOptions="actionDone"
        android:hint="@string/label_comment"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</LinearLayout>