2015-10-01 18:54:20 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-09-17 10:23:56 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-10-01 18:54:20 +03:00
|
|
|
|
2015-10-21 18:47:07 +03:00
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2017-01-19 13:00:56 +03:00
|
|
|
<com.yydcdut.rxmarkdown.RxMDTextView
|
2015-10-21 20:05:20 +03:00
|
|
|
android:id="@+id/single_note_content"
|
2016-01-31 23:07:32 +03:00
|
|
|
android:layout_width="match_parent"
|
2015-10-22 18:40:23 +03:00
|
|
|
android:layout_height="wrap_content"
|
2016-01-02 20:31:01 +03:00
|
|
|
android:padding="16dp"
|
2015-10-21 18:47:07 +03:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2016-01-31 23:07:32 +03:00
|
|
|
android:textColor="@color/fg_default"
|
2016-09-17 10:23:56 +03:00
|
|
|
android:textIsSelectable="true" />
|
2015-10-21 18:47:07 +03:00
|
|
|
</ScrollView>
|
2016-09-17 10:23:56 +03:00
|
|
|
|
2015-10-01 18:54:20 +03:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab_edit"
|
|
|
|
style="@style/fab"
|
|
|
|
android:src="@drawable/ic_action_edit"
|
|
|
|
app:backgroundTint="@color/primary"
|
2016-09-17 10:23:56 +03:00
|
|
|
app:rippleColor="@color/primary_dark" />
|
2015-10-01 18:54:20 +03:00
|
|
|
</merge>
|