Reputation: 2187
I have a Coordinator layout as my parent layout in my activity and a Floating Action Button. When i show a SnackBar on the screen, it appears below the FAB and pushes the FAB up which is a normal behavior. Now i want to hide the FAB on scroll and i used this in my FAB app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
and it works fine. But upon doing that, when i show my snack bar, it appears on the FAB instead of appearing below the FAB.
As you can see below, when i remove app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
from the FAB, the snack bar behavior is normal but the FAB doesn't hide on scroll
However here, when i add app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
in the FAB, the FAB hides on scroll but the snack bar appears over the FAB which is not normal behavior.
I want the FAB to hide on scroll but also for the Snack Bar to appear below the FAB but i don't know how to do it.
Here is the code for my main activity:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<androidx.drawerlayout.widget.DrawerLayout
android:id="@+id/Drawer_Main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ui.main.LockyActivity"
tools:openDrawer="start">
<!--
****************************************
**** This is the main coordinator layout
****************************************
-->
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/Layout_Coordinator_Main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--
********************************************************
**** This is the app bar layout which contains the
**** main Material Toolbar.
********************************************************
-->
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/Layout_AppBar_Main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:outlineAmbientShadowColor="@color/colorShadowColor"
android:outlineSpotShadowColor="@color/colorShadowColor"
app:liftOnScroll="true"
tools:targetApi="p">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/Toolbar_Main"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorOnSurface"
android:paddingStart="8dp"
android:paddingEnd="8dp">
<TextView
android:id="@+id/Toolbar_Main_Title"
style="@style/Locky.Text.Title6.Toolbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/app_name" />
<LinearLayout
android:id="@+id/Toolbar_Search_Layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingStart="8dp"
android:paddingEnd="8dp"
android:visibility="gone">
<EditText
android:id="@+id/Toolbar_Search_Box"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@null"
android:hint="@string/field_hint_item_search"
android:imeOptions="flagNoExtractUi|actionSearch"
android:importantForAutofill="no"
android:inputType="textNoSuggestions" />
<ImageButton
android:id="@+id/Toolbar_Search_Close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/actionBarItemBackground"
app:srcCompat="@drawable/ic_close" />
</LinearLayout>
</com.google.android.material.appbar.MaterialToolbar>
</com.google.android.material.appbar.AppBarLayout>
<!--
*****************************************************
**** This is the main content fragment container ****
*****************************************************
-->
<include layout="@layout/include_content_container_main" />
<!--
********************************************************
**** These are the two Floating Action Buttons which
**** appears on the main screen screen.
********************************************************
-->
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/FAB_Search"
style="@style/Locky.FloatingActionButton.Mini"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:layout_marginBottom="85dp"
app:layout_anchor="@id/FAB_Add"
app:layout_anchorGravity="top|center_horizontal"
app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
app:srcCompat="@drawable/ic_search" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/FAB_Add"
style="@style/Locky.FloatingActionButton.Normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
app:srcCompat="@drawable/ic_add" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<!--
****************************************************
**** This is the Navigation View for the Drawer ****
****************************************************
-->
<com.google.android.material.navigation.NavigationView
android:id="@+id/Navigation_View"
style="@style/Locky.Widget.Custom.NavigationView.Drawer"
android:layout_width="280dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:clipToPadding="false"
android:fitsSystemWindows="true"
android:paddingStart="0dp"
android:paddingEnd="16dp"
app:headerLayout="@layout/drawer_header"
app:itemTextAppearance="@style/Locky.Text.Body.Drawer"
app:menu="@menu/menu_drawer_main" />
</androidx.drawerlayout.widget.DrawerLayout>
</layout>
Can anyone provide a fix for that ?
Upvotes: 1
Views: 1158
Reputation: 365048
The Snackbar should Snackbars should appear above FABs.
The best solution is to use the setAnchorView
method in your Snackbar:
Snackbar.make(
view,"....",
Snackbar.LENGTH_SHORT
).setAnchorView(floatingActionButton).show();
Upvotes: 3