4

我试图让我的列表视图“反弹”。为了解释我自己,我希望 ListView 具有与 iOs List View 对象相同的行为。在列表的顶部和底部,用户可以通过滑动手指浏览列表。

这种行为存在于 Android 2.2 三星设备(例如 Galaxy Tab GT1000)上。

在我测试的大多数设备上,列表现在在滚动时表现不同,它显示一条蓝线,当你滑动手指时会变得更亮。

我发现 BounceListView 像这样:

public class BounceListView extends ListView
{
    private static final int MAX_Y_OVERSCROLL_DISTANCE = 200;

    private Context mContext;
    private int mMaxYOverscrollDistance;

    public BounceListView(Context context) 
    {
        super(context);
        mContext = context;
        initBounceListView();
    }

    public BounceListView(Context context, AttributeSet attrs) 
    {
        super(context, attrs);
        mContext = context;
        initBounceListView();
    }

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

    private void initBounceListView()
    {
        //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);  
    }

}

但是这个 ListView 的问题是它不会在滚动列表后返回到第一个或最后一个项目......它停留在未填充列表的位置。

任何人都有想法让它工作?

提前致谢!

4

1 回答 1

3

您应该覆盖onOverScrolled,调用它表示列表已过度滚动,并在该函数中滚动ListView回您想要使用它的点smoothScrollToPosition

它看起来像:

@Override
protected void onOverScrolled(int scrollX, int scrollY, boolean clampedX, boolean clampedY) {
    if(scrollY < 0) {
        smoothScrollToPosition(0);
    } else if(scrollY > MAX_SCROLL) {
        smoothScrollToPosition(getAdapter().getCount());
    }
}

MAX_SCROLL 必须由您使用列表项的高度和适配器中的项数来确定,尽管看起来您已经在问题中弄清楚了,所以这应该不是问题。

于 2012-09-14T12:41:32.677 回答