AndroidはナゲッツAPPホームページのスライディングシーリング効果を実現します

最初の最終効果

1657521886191.gif

使用されるコンポーネントTabLayoutViewPagerNestScrollView RecyclerView

主な実装

まず、NestedScrollViewから継承したScrollViewをカスタマイズし、onMeasureメソッドをオーバーライドする必要があります。このメソッドでは、scrollviewがスクロールできる最大距離を取得してから、onNestedPreScrollメソッドを再起動して、最初に子供。以下はメインコード表示です

public class MyScrollView extends NestedScrollView {

    private final String TAG = "MyScrollView";

    private int maxScrollHeight;

    public MyScrollView(Context context) {
        super(context);
    }

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

    public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

        //获取scrollView 最大可滚动的距离
        maxScrollHeight = this.getChildAt(0).getMeasuredHeight() - this.getMeasuredHeight();
    }


    @Override
    public void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed,
                                  int type) {

        super.onNestedPreScroll(target, dx, dy, consumed, type);

        //如果最大可滚动距离大于 0 则表示 scrollview 可以滚动,则去先消费用户滑动
        if(this.maxScrollHeight > 0){
            //判断用户是否是向上滑动,并且没有超出 scrollview 可滑动的最大距离
            boolean headerScrollUp = dy > 0 && getScrollY() < this.maxScrollHeight;

            //判断用户是否是向下滑动,并且没有超出可滑动距离
            boolean headerScrollDown = dy < 0 && getScrollY() > 0;

            //如果 scrollview 可以滑动,则去消费滑动
            if (headerScrollUp || headerScrollDown) {
                scrollBy(0, dy);
                consumed[1] = dy;
            }
            //通知子列表,父级消费的距离
            this.dispatchNestedPreScroll(dx, dy, consumed, null, type);
        }
    }
}
复制代码

次に、タブビューのコンテンツの高さを画面全体の高さに設定する必要があります。これにより、上にスクロールすると、タブのコンテンツのみが最後に残ります。以下はメインコード表示です。

//动态设置外层布局的高度,让整个 tab 页为屏幕高度
LinearLayout linearLayout = this.findViewById(R.id.linearLayout);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, height);
linearLayout.setLayoutParams(layoutParams);
复制代码

最後に、完全なコードアドレスコードを添付します

おすすめ

転載: juejin.im/post/7119007162965164040