mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-12-22 18:40:48 +03:00
d895106c22
Configured night mode to allow for a dark theme within the app.
18 lines
778 B
XML
18 lines
778 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/editContentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="it.niedermann.owncloud.notes.android.activity.EditNoteActivity">
|
|
|
|
<com.yydcdut.rxmarkdown.RxMDEditText
|
|
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>
|