2015-10-01 18:54:20 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-03-02 23:08:57 +03:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-10-01 18:54:20 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-09-17 10:23:56 +03:00
|
|
|
android:id="@+id/editContentContainer"
|
2015-10-01 18:54:20 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2018-03-02 23:08:57 +03:00
|
|
|
tools:context="it.niedermann.owncloud.notes.android.activity.EditNoteActivity">
|
2015-10-01 18:54:20 +03:00
|
|
|
|
2018-03-02 23:08:57 +03:00
|
|
|
<com.yydcdut.rxmarkdown.RxMDEditText
|
2017-09-21 19:19:54 +03:00
|
|
|
android:id="@+id/editContent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
|
|
|
android:inputType="textMultiLine|textCapSentences"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:textColor="@color/fg_default"/>
|
|
|
|
</ScrollView>
|