2015-10-01 18:54:20 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-01-02 20:31:01 +03:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/editContentContainer"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-10-01 18:54:20 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2016-01-02 20:31:01 +03:00
|
|
|
tools:context="it.niedermann.owncloud.notes.android.activity.CreateNoteActivity">
|
2015-10-01 18:54:20 +03:00
|
|
|
|
|
|
|
<ScrollView
|
2016-01-02 20:31:01 +03:00
|
|
|
android:id="@+id/scrollView2"
|
2015-10-01 18:54:20 +03:00
|
|
|
android:layout_width="match_parent"
|
2016-01-02 20:31:01 +03:00
|
|
|
android:layout_height="match_parent">
|
2015-10-01 18:54:20 +03:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/editContent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
2016-02-02 16:34:15 +03:00
|
|
|
android:inputType="textMultiLine|textCapSentences"
|
2016-01-02 20:31:01 +03:00
|
|
|
android:padding="16dp"/>
|
2015-10-01 18:54:20 +03:00
|
|
|
</ScrollView>
|
|
|
|
</LinearLayout>
|