检测AppBarLayout和NestedScrollView的滚动效果

4
我有一个布局(代码在底部),其中包含顶部的CollapsingToolBarLayout和底部的NestedScrollView。当我向上滚动时,折叠工具栏将开始折叠,然后滚动视图将首先随着折叠工具栏向上滚动,然后进入折叠工具栏后面。我想在折叠工具栏中添加一些动画(向上滚动时图像向左滑动,向下滚动时图像向右滑动)。问题是:有时候,当我向上滚动时,图像不会向左滑动。当它向左滑动时,如果我向下滚动,则不会向右滑动。我通过AppBarLayout的onOffsetChanged和NestedScrollView的OnTouchListener触发这些动画。
// People image slide left when user scrolls up on the scroll view
mScrollView.setOnTouchListener(scrollViewTouchListener);


// People image slide back when app bar is almost expanded
mAppBar.addOnOffsetChangedListener(appBarOffsetChangedListener);

// OnOffsetChangedListener for the AppBarLayout
    private AppBarLayout.OnOffsetChangedListener appBarOffsetChangedListener = new AppBarLayout.OnOffsetChangedListener() {
        @Override
        public void onOffsetChanged(AppBarLayout appBarLayout, int offset) {

    // If the app bar is almost expanded and people image slided left, make it slide back
    if ((offset > -20 || offset == 0) && mPeopleSlidedLeft) {
        mPeopleImage.animate().setDuration(animationTime)
                .translationX(originalPeoplePosition[0]);
        mPeopleSlidedLeft = false;
    }
}
};

// Touch listener for the scroll view
private View.OnTouchListener scrollViewTouchListener = new View.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        float y = event.getY();

    if (event.getAction() == MotionEvent.ACTION_MOVE) {
        float dy = y - mPreviousY;

        // if user scrolls up and people image hasn't slided left,
        if (dy < -1 && mPeopleSlidedLeft == false) {
            DisplayMetrics dm = new DisplayMetrics();
            getActivity().getWindowManager().getDefaultDisplay().getMetrics(dm);

            int xDest = dm.widthPixels / 2;
            xDest += mPeopleImage.getMeasuredWidth() / 2;
            mPeopleImage.animate().setDuration(animationTime)
                    .translationX(originalPeoplePosition[0] - xDest);
        }
    }

    mPeopleSlidedLeft = true;
    mPreviousY = y;
    return false;
}
};

请注意,ScrollView的setOnScrollChangeListener无法工作,因为当toolbar折叠时不会触发它。

以下是该布局的简化版本:

<?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:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:elevation="0dp">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="@dimen/collapsing_toolbar_margin"
            android:fitsSystemWindows="true"
            android:minHeight="120dp"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <LinearLayout
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/white"
                android:fitsSystemWindows="true"
                android:orientation="vertical"
                app:layout_collapseMode="parallax">

            </LinearLayout>

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="@dimen/toolbar_height"
                android:layout_gravity="center_horizontal"
                app:contentInsetEnd="16dp"
                app:contentInsetStart="16dp"
                app:elevation="0dp"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

            </android.support.v7.widget.Toolbar>

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

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

        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:animateLayoutChanges="true"
        android:background="@color/white"
        android:orientation="vertical"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <android.support.v4.widget.NestedScrollView
            android:id="@+id/scroll_view"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">

        </android.support.v4.widget.NestedScrollView>

    </LinearLayout>

    <include
        layout="@layout/notification"
        android:layout_width="match_parent"
        android:layout_height="@dimen/active_inactive_time_height"
        android:layout_gravity="bottom"
        app:layout_anchorGravity="bottom|right"
        android:layout_marginBottom="@dimen/bottom_navigation_bar_offset" />
</android.support.design.widget.CoordinatorLayout> 

有人可以帮忙看一下吗?我会非常感激!


1
我曾经遇到过完全相同的问题,只有在快速滚动时才会出现。看起来解决方案是编写自定义Behavior,可以查看android.support.design.widget.FloatingActionButton.Behavior的示例,您也可以阅读这些文章12 - M. Reza Nasirloo
@M.RezaNasirloo 谢谢。在我的情况下,当我以正常速度滚动时,有时动画不会启动。当我快速滚动时,它们通常不会发生。我会查看这些链接,看看是否能找到解决方案。 - Anky An
你能发布一个带有轮廓行为的GIF吗? - azizbekian
@azizbekian 你好。我添加了2张图片。看看这样是否更有意义。 - Anky An
1个回答

4
我不确定为什么您在NestedScrollView上使用触摸监听器,如果我理解正确,您希望有两种状态:
  1. 工具栏已展开且人员图像可见
  2. 工具栏已折叠且人员图像隐藏
这两种状态之间的转换应该是将人员图像向屏幕左侧滑动?只使用AppBarLayout.OnOffsetChangedListener就可以实现这一点,并且您可以使用偏移量的变化来“动画”视图移动,而不是设置触发点,这样可以得到更平滑的实现。
例如:
private AppBarLayout.OnOffsetChangedListener appBarOffsetChangedListener = new AppBarLayout.OnOffsetChangedListener() {
    @Override
    public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
        float fraction = ((float) Math.abs(verticalOffset)) / appBarLayout.getTotalScrollRange();
        int peopleRange = mPeopleImage.getRight();
        mPeopleImage.setTranslationX(fraction * peopleRange * -1);
    }
};

我已经添加了一些有关滑动时间和速度的配置。在这种情况下,它会等待头部折叠25%后再滑动,并且图像向左移动的速度是原来的两倍。您可以尝试调整这些数字以达到您想要的效果。

private AppBarLayout.OnOffsetChangedListener appBarOffsetChangedListener = new AppBarLayout.OnOffsetChangedListener() {
    @Override
    public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
        float fraction = ((float) Math.abs(verticalOffset)) / appBarLayout.getTotalScrollRange();
        int peopleRange = mPeopleImage.getRight();
        float delay = 0.25f;
        float speed = 2f;
        fraction = Math.max(fraction - delay, 0f) * speed;
        mPeopleImage.setTranslationX(fraction * peopleRange * -1);
    }
};

嗨@darnmason。感谢您的回答。我想在工具栏折叠时将图像向左滑动约3%,当用户向上滚动时。当它再次展开时,图像会滑回来。我尝试了OnOffsetChangedListener。它很慢。此外,我现在使用它将图像移回屏幕。有时它会失败。图像不会回来。 - Anky An
我已经添加了另一个示例,以展示您如何调整幻灯片的行为。 - darnmason
这比以前好多了。我可以微调一下,让它完美无缺。你翻译的方式对我来说是新鲜事物。实际上,有一个波浪图像的比例动画。我会尝试自己解决这个问题。否则,我会在这里向你请教。再次感谢。 - Anky An

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接