在我的上一个项目中,我发现了Android Material Design Library。它非常强大,我很乐意使用它。我向FloatingActionButton添加了一个自定义行为,因此在向下滚动时它会消失。现在我提到,如果显示SnackBar,FAB的位置不再自动处理。
经过一些调试后我发现,将锚设置为recyclerView并添加customBehaviour以根据SnackBar从CoordinatorLayout滚动默认行为。
所以我问自己,我可以向我的FAB添加多个行为吗?或者我可以以某种方式告诉它,不应该覆盖那个defualt,而是扩展?
或者我可以写多个吗?
@Override
public boolean layoutDependsOn(CoordinatorLayout parent, FloatingActionButton fab, View dependency) {
return dependency instanceof RecyclerView;
}
答案 0 :(得分:0)
好的,我找到了一种方法来实现所希望的行为,但它有更多的解决方法而不是答案。
如果我在Java代码中以编程方式添加Scrollbehavior,如下所示:
recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
if (newState == RecyclerView.SCROLL_STATE_IDLE) {
sendMailFAB.show();
}
super.onScrollStateChanged(recyclerView, newState);
}
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
if (dy > 0 && sendMailFAB.isShown())
sendMailFAB.hide();
}
});
然后删除自定义行为及其在.xml文件中的锚点,CoordinatorLayout的默认行为处理Snackbar和onScrollListener滚动行为。
<?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:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="de.flowment.designExample.StartActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/startRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
</android.support.v7.widget.RecyclerView>
<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_margin="@dimen/fab_margin"
app:layout_anchorGravity="bottom|end"
android:src="@android:drawable/ic_dialog_email" />
<!-- DELETE THIS PART, BECAUSE IT'S NOT USED ANYMORE AND BLOCKS THE DEFAULT.
app:layout_anchor="@id/startRecyclerView"
app:layout_behavior="de.flowment.designExample.FABScrollBehavior" />-->
</android.support.design.widget.CoordinatorLayout>
所以我实现了两种行为,但就像我说这更像是一种解决方法。