I want to show FloatingActionButton
bottom-right every time (while scrolling too). But when I used it with RecyclerView
it doesn't show on the RecyclerView
. It is shown under the RecyclerView
.
Here is my layout:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/kitapListeRw"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/kitapEkleBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:clickable="true"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
app:srcCompat="@drawable/ic_add_24dp" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
How to show FAB bottom-right and not under the RecyclerView
every time?
Try setting bottom and end constraints to parent