26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/main_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
<ScrollView
|
|
android:id="@+id/entry_scroll"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:fillViewport="true"
|
|
android:background="?android:attr/colorBackground"
|
|
android:scrollbarStyle="insideOverlay">
|
|
<keepass2android.view.EntryContentsView
|
|
android:id="@+id/entry_contents"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent" />
|
|
</ScrollView>
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/entry_edit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom|right"
|
|
android:layout_margin="16dp"
|
|
android:src="@drawable/baseline_edit_24" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |