如何使用列表视图的滚动功能?

发布于 2024-12-10 14:51:56 字数 317 浏览 0 评论 0原文

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

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

Android's new Overscroll functionality introduced in Gingerbread and discovered some more interesting things.
The functionality to make a a view scroll beyond its limits and then bounce back (almost exactly like iOS) is sort of built into the framework, but just hidden.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

卷耳 2024-12-17 14:51:56

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

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

public void setOverScrollMode (int mode)

According to the android developers visit the following link.
http://developer.android.com/reference/android/widget/AbsListView.html#setOverScrollMode(int)

the doc says you have to use following method.

public void setOverScrollMode (int mode)
何时共饮酒 2024-12-17 14:51:56

你可以尝试一下它给的。你的问题的解决方案。

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

You can try this it give. you the solution for your problem.

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

for this you need the scroolerPager Class. get it here,

  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);
                }
            }
        };
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文