android smalltable 支持滚动指定行指定列,支持嵌套滚动behavvior,控制fab隐藏显示.

吕钧
2023-12-01

android smarttabe 支持滚动指定行指定列,支持fab滚动显示隐藏.

首选讲解怎么让smalltable支持这个behavior属性.

fab代码

public class FabBehavior extends MyFloatingActionMenu.Behavior {
    private boolean visible = true;//是否可见
//    1、onStartNestedScroll() : 当观察的View滑动开始的时候进行回调
//    2、onNestedScroll() : 当观察的View滑动的时候回调
//    3、nestedScrollAxes : 滑动的关联轴== ViewCompat.SCROLL_AXIS_VERTICAL,这里只考虑竖直方向

    public FabBehavior(Context context, AttributeSet attrs) {
        super();
    }

    @Override
    public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull MyFloatingActionMenu child, @NonNull View directTargetChild, @NonNull View target, int nestedScrollAxes
 类似资料: