16

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

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

4

2 回答 2

9

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

医生说你必须使用以下方法。

public void setOverScrollMode (int mode)
于 2011-10-18T06:43:19.907 回答
-2

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

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());
        }
    });

为此,您需要 scoolerPager 类。拿到这里,

  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);
                }
            }
        };
    }
于 2011-12-23T06:19:12.443 回答