aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/add_email_dialog.xml
blob: 68d895145b086cc2f7e39fb3122e9b5f60f50f57 (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
<?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">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/create_key_add_email_text"
        android:textAppearance="?android:textAppearanceMedium" />

    <org.sufficientlysecure.keychain.ui.widget.EmailEditText
        android:id="@+id/add_email_address"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:hint="@string/label_email"
        android:imeOptions="actionNext"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</LinearLayout>