aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/template_preference_dialog.xml
blob: c5fc548abda0fc527ee013608ffe9f0fe98a6d6f (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
<?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:padding="8dp" >

    <EditText
        android:id="@+id/signature_dialog_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="top|left"
        android:inputType="textMultiLine|textCapSentences"
        android:minLines="3"
        android:singleLine="false" />

    <Button
        android:id="@+id/signature_templates"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:paddingTop="8dp"
        android:text="@string/init_signature_template_button" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="8dp"
        android:text="@string/init_template_help"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</LinearLayout>