Advertisement

TrimwebsolutionsTrimwebsolutions

Problem and Solutions

Floating button doesn't seen because of Bottom Nav in android ?

By M.K. Verma · 4 May 2022

Floating button doesn't seen because of Bottom Nav in android ?

You should change this in <fragment>

app:layout_constraintBottom_toBottomOf="parent"

to

app:layout_constraintBottom_toTopOf="@id/bottomNavigationView"

the reason is that the fragment is now underneath the BottomNavigationView while you want it to be on top of it