如何为listview使用过度滚动功能?

时间:2011-10-18 06:21:15

标签: android listview android-overscoll

Android的新Overscroll功能在Gingerbread中引入并发现了一些更有趣的东西。 使视图滚动超出其限制然后反弹(几乎完全像iOS)的功能有点内置到框架中,但只是隐藏。

  

http://www.youtube.com/watch?v=dOyWCDhlxv8&feature=player_embedded

2 个答案:

答案 0 :(得分:9)

根据android开发者访问以下链接。 http://developer.android.com/reference/android/widget/AbsListView.html#setOverScrollMode(int)

该文档说您必须使用以下方法。

public void setOverScrollMode (int mode)

答案 1 :(得分:-1)

你可以试试这个。你解决问题的方法。

scrollView = (ScrollView) findViewById(R.id.scr);
    contentView = (ViewGroup) findViewById(R.id.r2);
    scrollView.setOnTouchListener(new ScrollPager(scrollView, contentView));
    scrollView.post(new Runnable() {
        public void run() {
            scrollView.scrollTo(0, contentView.getPaddingTop());
        }
    });

为此你需要scroolerPager类。明白了,

  public class ScrollPager implements OnTouchListener
public ScrollPager(ScrollView aScrollView, ViewGroup aContentView)
    {
        mScrollView = aScrollView;
        mContentView = aContentView;
        scroller = new Scroller(mScrollView.getContext(), new OvershootInterpolator());
        task = new Runnable()
        {
            public void run()
            {
                scroller.computeScrollOffset();
                mScrollView.scrollTo(0, scroller.getCurrY());

                if (!scroller.isFinished())
                {
                    mScrollView.post(this);
                }
            }
        };
    }