2014-03-31 20:04:05 +02:00
|
|
|
<?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"
|
2014-04-01 15:04:54 +02:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
|
android:paddingRight="16dp"
|
2014-03-31 20:04:05 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<EditText
|
2014-09-17 13:45:16 +02:00
|
|
|
android:id="@+id/encrypt_text_text"
|
2014-03-31 20:04:05 +02:00
|
|
|
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>
|