iOS 喜欢 Android 上的滚动效果 [英] iOS like over scroll effect on Android

查看:21
本文介绍了iOS 喜欢 Android 上的滚动效果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的应用中实现类似 iOS 的反弹滚动效果.

我遇到了这个

在我开始回答之前的一个小说明:我强烈建议您使用支持库中的 NestedScrollView 而不是普通的 ScrollView.它们在任何方面都相同,但 NestedScrollView 在较低的 API 级别上实现了正确的嵌套滚动行为.

无论如何,让我们从我的答案开始:我提出的解决方案适用于任何可滚动容器,无论是 ScrollViewListView 还是 RecyclerView 并且您不需要子类化任何 Views 来实现它.

首先,如果您尚未使用 Google 的设计支持库,您需要将其添加到您的项目中:

编译'com.android.support:design:25.0.1'

请记住,如果您的目标不是 API 级别 25(顺便说一句,您应该这样做),那么您需要包含您的 API 级别的最新版本(例如.compile 'com.android.support:design:24.2.0' 用于 API 级别 24).

您使用的任何可滚动容器都需要包含在布局中的 CoordinatorLayout 中.在我的示例中,我使用了 NestedScrollView:

<android.support.v4.widget.NestedScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"><!-- 内容--></android.support.v4.widget.NestedScrollView></android.support.design.widget.CoordinatorLayout>

CoordinatorLayout 允许你为它的直接子视图分配一个 Behavior.在这种情况下,我们将给 NestedScrollView 分配一个 Behavior,它将实现过度滚动反弹效果.

我们来看看Behavior的代码:

public class OverScrollBounceBehavior extends CoordinatorLayout.Behavior{私有 int mOverScrollY;公共 OverScrollBounceBehavior() {}公共 OverScrollBounceBehavior(上下文上下文,AttributeSet attrs){超级(上下文,属性);}@覆盖public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, View child, View directTargetChild, View target, int nestedScrollAxes) {mOverScrollY = 0;返回真;}@覆盖public void onNestedScroll(CoordinatorLayout coordinatorLayout, View child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) {如果(dyUnconsumed == 0){返回;}mOverScrollY -= dyUnconsumed;最终的 ViewGroup 组 = (ViewGroup) 目标;final int count = group.getChildCount();for (int i = 0; i < count; i++) {最终视图视图 = group.getChildAt(i);view.setTranslationY(mOverScrollY);}}@覆盖public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, View child, View target) {最终的 ViewGroup 组 = (ViewGroup) 目标;final int count = group.getChildCount();for (int i = 0; i < count; i++) {最终视图视图 = group.getChildAt(i);ViewCompat.animate(view).translationY(0).start();}}}

解释什么是 Behavior 以及它们如何工作超出了本答案的范围,所以我将快速解释上述代码的作用.Behavior 拦截所有发生在 CoordinatorLayout 的直接子级中的滚动事件.在 onStartNestedScroll() 方法中,我们返回 true 因为我们对任何滚动事件感兴趣.在 onNestedScroll() 中,我们查看 dyUnconsumed 参数,该参数告诉我们滚动容器未消耗多少垂直滚动(换句话说,过度滚动),然后翻译滚动容器的子项.由于我们只是获得 delta 值,因此我们需要在 mOverscrollY 变量中汇总所有这些值.onStopNestedScroll() 在滚动事件停止时调用.这是我们将滚动容器的所有子级动画返回到其原始位置的时间.

要将Behavior 分配给NestedScrollView,我们需要使用layout_behavior xml 属性并传入 的完整类名>行为我们想要使用.在我的示例中,上面的类位于 com.github.wrdlbrnft.testapp 包中,所以我必须将 com.github.wrdlbrnft.testapp.OverScrollBounceBehavior 设置为值.layout_behaviorCoordinatorLayout 的自定义属性,所以我们需要在它前面加上正确的命名空间:

<android.support.v4.widget.NestedScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"app:layout_behavior="com.github.wrdlbrnft.testapp.OverScrollBounceBehavior"><!-- 内容--></android.support.v4.widget.NestedScrollView></android.support.design.widget.CoordinatorLayout>

注意我在 CoordinatorLayout 上添加的命名空间和在 NestedScrollView 上添加的 app:layout_behavior 属性.

这就是你所要做的!虽然这个答案比我预期的要长,但我跳过了一些关于 CoordinatorLayoutBehaviors 的基础知识.因此,如果您不熟悉这些或有任何其他问题,请随时提出.

I want to implement the iOS-like bounce overscroll effect in my app.

I came across this link which suggests creating a custom ScrollView. But the problem is that when I am scrolling up and down fast it's working fine but as soon as I pull the bottom or top of the screen it's just stuck and the effect is not working anymore.

As an example of the kind of animation I want to achieve you can look at this:

This is the code I currently have:

public class ObservableScrollView extends ScrollView
{
    private static final int MAX_Y_OVERSCROLL_DISTANCE = 150;

    private Context mContext;
    private int mMaxYOverscrollDistance;

    public ObservableScrollView(Context context)
    {
        super(context);
        mContext = context;
        initBounceScrollView();
    }

    public ObservableScrollView(Context context, AttributeSet attrs)
    {
        super(context, attrs);
        mContext = context;
        initBounceScrollView();
    }

    public ObservableScrollView(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
        mContext = context;
        initBounceScrollView();
    }

    private void initBounceScrollView()
    {
        //get the density of the screen and do some maths with it on the max overscroll distance
        //variable so that you get similar behaviors no matter what the screen size

        final DisplayMetrics metrics = mContext.getResources().getDisplayMetrics();
        final float density = metrics.density;

        mMaxYOverscrollDistance = (int) (density * MAX_Y_OVERSCROLL_DISTANCE);
    }

    @Override
    protected boolean overScrollBy(int deltaX, int deltaY, int scrollX, int scrollY, int scrollRangeX, int scrollRangeY, int maxOverScrollX, int maxOverScrollY, boolean isTouchEvent)
    {
        //This is where the magic happens, we have replaced the incoming maxOverScrollY with our own custom variable mMaxYOverscrollDistance;
        return super.overScrollBy(deltaX, deltaY, scrollX, scrollY, scrollRangeX, scrollRangeY, maxOverScrollX, mMaxYOverscrollDistance, isTouchEvent);
    }
}

解决方案

I have quickly put together a simple solution based on a CoordinatorLayout.Behavior. It's not perfect, you can maybe spend some time fine tuning it a bit, but it's not bad. Anyway the result should look something like this:

As a small side note before I start with the answer: I strongly recommend that you use the NestedScrollView from the support library instead of a normal ScrollView. They are identical in any way, but the NestedScrollView implements correct nested scrolling behaviour on lower API levels.

Anyway let's start with my answer: The solution I came up with would work with any scrollable container, be it a ScrollView, ListView or RecyclerView and you don't need to subclass any Views to implement it.

First you need to add Google's Design Support Library to your project if you aren't already using it:

compile 'com.android.support:design:25.0.1'

Remember that if you aren't targeting API level 25 (which you should by the way) then you need to include the newest version for your API level (eg. compile 'com.android.support:design:24.2.0' for API level 24).

Whatever scrollable container you are using needs to wrapped in a CoordinatorLayout in your layout. In my example I am using a NestedScrollView:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <!-- content -->

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

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

The CoordinatorLayout allows you to assign a Behavior to its direct child views. In this case we are going to assign a Behavior to the NestedScrollView which is going implement the overscroll bounce effect.

Let's just take a look at the code of the Behavior:

public class OverScrollBounceBehavior extends CoordinatorLayout.Behavior<View> {

    private int mOverScrollY;

    public OverScrollBounceBehavior() {
    }

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

    @Override
    public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, View child, View directTargetChild, View target, int nestedScrollAxes) {
        mOverScrollY = 0;
        return true;
    }

    @Override
    public void onNestedScroll(CoordinatorLayout coordinatorLayout, View child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) {
        if (dyUnconsumed == 0) {
            return;
        }

        mOverScrollY -= dyUnconsumed;
        final ViewGroup group = (ViewGroup) target;
        final int count = group.getChildCount();
        for (int i = 0; i < count; i++) {
            final View view = group.getChildAt(i);
            view.setTranslationY(mOverScrollY);
        }
    }

    @Override
    public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, View child, View target) {
        final ViewGroup group = (ViewGroup) target;
        final int count = group.getChildCount();
        for (int i = 0; i < count; i++) {
            final View view = group.getChildAt(i);
            ViewCompat.animate(view).translationY(0).start();
        }
    }
}

Explaining what a Behavior is and how they work is beyond the scope of this answer so I am just going to quickly explain what the above code does. The Behavior intercepts all scroll events that happen in the direct children of the CoordinatorLayout. In the onStartNestedScroll() method we return true since we are interested in any scroll events. In onNestedScroll() we look at the dyUnconsumed parameter which tells us how much of the vertical scroll was not consumed by the scrolling container (in other words overscroll) and then translate the children of the scrolling container by that amount. Since we are just getting delta values we need to sum up all of them in the mOverscrollY variable. onStopNestedScroll() is called when the scrolling event stops. This is when we animate all children of the scrolling container back to their original position.

To assign the Behavior to the NestedScrollView we need to use the layout_behavior xml attribute and pass in the full class name of the Behavior we want to use. In my example the above class is in the package com.github.wrdlbrnft.testapp so I have to set com.github.wrdlbrnft.testapp.OverScrollBounceBehavior as value. layout_behavior is a custom attribute of the CoordinatorLayout so we need to prefix it with the correct namespace:

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

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="com.github.wrdlbrnft.testapp.OverScrollBounceBehavior">

        <!-- content -->

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

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

Notice the namespace I added on the CoordinatorLayout and the app:layout_behavior attribute I added on the NestedScrollView.

And that is all you have to do! While this answer turned out to be longer than I intended I skipped over some of the basics concering the CoordinatorLayout and Behaviors. So if you are unfamiliar with these or have any other further questions feel free to ask.

这篇关于iOS 喜欢 Android 上的滚动效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆