2014-03-31 20:04:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-04-22 18:30:35 +05:30
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-31 20:04:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-04-22 18:30:35 +05:30
|
|
|
android:layout_height="match_parent">
|
2014-03-31 20:04:05 +02:00
|
|
|
|
2015-04-22 18:30:35 +05:30
|
|
|
<ScrollView
|
2014-03-31 20:04:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-04-22 18:30:35 +05:30
|
|
|
android:layout_height="match_parent"
|
2015-06-30 16:40:00 +02:00
|
|
|
android:paddingTop="4dp"
|
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
|
android:paddingRight="8dp"
|
2015-04-22 18:30:35 +05:30
|
|
|
android:fillViewport="true">
|
2014-03-31 20:04:05 +02:00
|
|
|
|
|
|
|
|
<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"
|
2015-04-22 18:30:35 +05:30
|
|
|
android:layout_height="wrap_content"
|
2014-03-31 20:04:05 +02:00
|
|
|
android:gravity="top"
|
|
|
|
|
android:inputType="text|textCapSentences|textMultiLine|textLongMessage"
|
2015-04-22 18:30:35 +05:30
|
|
|
android:hint="@string/encrypt_content_edit_text_hint" />
|
2014-03-31 20:04:05 +02:00
|
|
|
|
2015-04-22 18:30:35 +05:30
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|