浮动操作按钮dias出现在SECOND Snackbar下

时间:2015-10-12 09:01:57

标签: android layout floating-action-button snackbar

我正在使用CoordinatorLayout将我的浮动操作按钮保持在Snackbar上方,这非常有用。 ......但仅限于第一个Snackbar。当第二个创建时,第一个仍在那里,FAB在其下滑动。

我在RecyclerView中使用它,我可以在其中删除项目。删除项目后,会出现“撤消”小吃栏。因此,当您逐个删除某些项目时,可见的Snackbar将被新的替换(导致FAB行为)

您是否知道将FAB保持在新Snackbars之上的解决方案?

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fab="http://schemas.android.com/tools"
    android:id="@+id/coordinator_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:backgroundTint="@color/background_grey"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical" />

    </LinearLayout>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_marginBottom="16dp"
            android:layout_marginEnd="16dp"
            android:layout_marginRight="16dp"
            android:elevation="6dp"
            android:src="@drawable/ic_add_white_36dp"
            app:borderWidth="0dp"
            app:fabSize="normal"
            app:pressedTranslationZ="10dp"
            app:rippleColor="@color/abc_primary_text_material_dark" />

</android.support.design.widget.CoordinatorLayout>

这是我在项目

上删除后的样子

enter image description here

...然后我删除另一个项目

enter image description here

1 个答案:

答案 0 :(得分:0)

这将永远发生,因为小吃栏是视图上方的一层。在这种情况下不应该使用堆叠的小吃吧请参阅google gidelines ..  https://www.google.co.in/design/spec/components/snackbars-toasts.html#snackbars-toasts-usage

相反,你的实现应该是这样的 https://github.com/jenzz/Android-UndoBar

改变你的设计道歉