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

21 lines
829 B
XML
Raw Normal View History

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"
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>