27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/dishes_fragment_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<!-- Your list view -->
|
|
<ListView
|
|
android:id="@+id/dishes_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:divider="@android:color/darker_gray"
|
|
android:dividerHeight="1dp" />
|
|
|
|
<!-- FloatingActionButton -->
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/add_dish"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="16dp"
|
|
android:backgroundTint="@color/cyan"
|
|
app:srcCompat="@android:drawable/ic_input_add"
|
|
app:tint="@android:color/white"/>
|
|
</FrameLayout>
|