nextcloud-notes-android/app/src/main/res/layout/activity_single_note.xml

19 lines
786 B
XML
Raw Normal View History

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"
xmlns:tools="http://schemas.android.com/tools"
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">
<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"
android:background="@color/bg_normal"
android:textIsSelectable="true" />
2018-03-02 23:08:57 +03:00
</ScrollView>