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"
|
2017-08-30 20:48:58 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-09-17 10:23:56 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-08-30 20:48:58 +03:00
|
|
|
android:orientation="vertical"
|
2018-03-02 23:08:57 +03:00
|
|
|
tools:context="it.niedermann.owncloud.notes.android.activity.EditNoteActivity">
|
2017-08-30 20:48:58 +03:00
|
|
|
|
2018-04-11 16:37:28 +03:00
|
|
|
<com.yydcdut.rxmarkdown.RxMDTextView
|
|
|
|
android:id="@+id/single_note_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="@color/fg_default"
|
2017-09-21 19:19:54 +03:00
|
|
|
android:background="@color/bg_normal"
|
2018-04-11 16:37:28 +03:00
|
|
|
android:textIsSelectable="true" />
|
2017-08-30 20:48:58 +03:00
|
|
|
|
2018-03-02 23:08:57 +03:00
|
|
|
</ScrollView>
|