aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/encrypt_text_fragment.xml
blob: 3c21291cdfc733899fe91e1002e1ccb79970314e (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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="4dp"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:orientation="vertical">

        <EditText
            android:id="@+id/encrypt_text_text"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:gravity="top"
            android:inputType="text|textCapSentences|textMultiLine|textLongMessage"
            android:hint="@string/encrypt_content_edit_text_hint"
            android:layout_weight="1" />

    </LinearLayout>
</ScrollView>