Fix #538 - text area covers whole screen

This commit is contained in:
Thore Goebel 2020-01-10 08:30:54 +01:00 committed by Niedermann IT-Dienstleistungen
parent 026f06f2d0
commit b1d61995f3

View file

@ -3,6 +3,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:orientation="vertical"
tools:context="it.niedermann.owncloud.notes.android.activity.EditNoteActivity">
@ -10,6 +11,7 @@
android:id="@+id/editContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:ems="10"
android:inputType="textMultiLine|textCapSentences"
android:padding="16dp"