mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-12-22 18:40:48 +03:00
21 lines
829 B
XML
21 lines
829 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<WebView
|
||
|
android:id="@+id/singleNoteContent"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="10dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
|
||
|
<android.support.design.widget.FloatingActionButton
|
||
|
android:id="@+id/fab_edit"
|
||
|
style="@style/fab"
|
||
|
android:src="@drawable/ic_action_edit"
|
||
|
app:backgroundTint="@color/primary"
|
||
|
app:rippleColor="@color/primary_dark"/>
|
||
|
</merge>
|