美文网首页
Scroller实现弹性滑动代码模版

Scroller实现弹性滑动代码模版

作者: 淡定丶说的是 | 来源:发表于2016-07-03 20:57 被阅读36次
    
    Scroller scroller = new Scroller(mContext);
     
    private void smoothScrollTo(int dstX, int dstY) {
        int scrollX = getScrollX();
        int delta = dstX - scrollX;
        scroller.startScroll(scrollX, 0, delta, 0, 1000);
        invalidate();
    }
     
    @Override
    public void computeScroll() {
        if (scroller.computeScrollOffset()) {
            scrollTo(scroller.getCurrX(), scroller.getCurY());
            postInvalidate();
        }
    }
    
    

    相关文章

      网友评论

          本文标题:Scroller实现弹性滑动代码模版

          本文链接:https://www.haomeiwen.com/subject/fkrcjttx.html