我有一个 FAB(浮动操作按钮)
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
...
<android.support.design.widget.FloatingActionButton
android:id="@+id/fabButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="@dimen/fab_margin"
app:layout_anchorGravity="bottom|right|end"
android:src="@drawable/img"
app:borderWidth="0dp"
/>
这个 FAB 存在于我滚动浏览的 RecycleView 之上。在滚动的某个阶段,我会显示 SnackBar,并且一切都像宣传的那样工作(具体来说,SnackBar 会移动 FAB 以避免阻塞。
现在我想实现一种自定义行为,向下滚动时我想隐藏 FAB。
所以我创建了一个自定义行为:
public class CustomBehavior extends CoordinatorLayout.Behavior<FloatingActionButton> {
private int toolbarHeight;
public CustomBehavior(Context context, AttributeSet attrs) {
super(context, attrs);
this.toolbarHeight = Utils.getToolbarHeight(context);
}
@Override
public boolean layoutDependsOn(CoordinatorLayout parent, FloatingActionButton fab, View dependency) {
return dependency instanceof AppBarLayout;
}
@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, FloatingActionButton fab, View dependency) {
if (dependency instanceof AppBarLayout) {
CoordinatorLayout.LayoutParams lp = (CoordinatorLayout.LayoutParams) fab.getLayoutParams();
int fabBottomMargin = lp.bottomMargin;
int distanceToScroll = fab.getHeight() + fabBottomMargin;
float ratio = (float)dependency.getY()/(float)toolbarHeight;
fab.setTranslationY(-distanceToScroll * ratio);
}
return true;
}
}
当我向下滚动时,这几乎隐藏了我的 FAB(它与 AppBarLayout 一起隐藏所以我将它添加到我的 FAB xml 声明中
app:layout_behavior="com.example.CustomBehavior"
当我这样做时,FAB 会正确隐藏,但 SnackBar 在显示时会与它重叠。意味着默认行为消失了......
有可能两者兼得吗?