replace the relativelayout with a scrollview

This commit is contained in:
tibbi 2016-08-14 22:22:55 +02:00
parent c38a2bce10
commit c312fdb379

View File

@ -1,16 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/activity_margin">
android:layout_height="match_parent">
<EditText
android:id="@+id/notes_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:gravity="top"
android:scrollbars="vertical"/>
android:padding="@dimen/activity_margin"/>
</RelativeLayout>
</ScrollView>