• 欢迎访问开心洋葱网站,在线教程,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站,欢迎加入开心洋葱 QQ群
  • 为方便开心洋葱网用户,开心洋葱官网已经开启复制功能!
  • 欢迎访问开心洋葱网站,手机也能访问哦~欢迎加入开心洋葱多维思维学习平台 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏开心洋葱吧~~~~~~~~~~~~~!
  • 由于近期流量激增,小站的ECS没能经的起亲们的访问,本站依然没有盈利,如果各位看如果觉着文字不错,还请看官给小站打个赏~~~~~~~~~~~~~!

Android自定义ScrollView实现反弹效果

Android 水墨上仙 2054次浏览

android的ScrollView控件默认是没有反弹效果的,当滑动到边缘的时候便不能继续滑动。这里通过自定义ScrollView来实现反弹效果。看下面的效果图,红色图片在最左边,android默认ScrollView控件红色图片在最左边的时候是不能向右滚动的。
这里是水平滚动,我们可以通过自定义类继承自HorizontalScrollView类来实现。
转自:” target=”_blank”>http://blog.csdn.net/hopezhangbo/article/details/7402445

public class MyScrollView extends HorizontalScrollView {  
    private View inner;  
    private float x;  
    private Rect normal = new Rect();  
      
    @Override  
    protected void onFinishInflate() {  
        if (getChildCount() > 0) {  
            inner = getChildAt(0);  
        }  
        System.out.println("getChildCount():" + getChildCount());  
    }  
      
    public MyScrollView(Context context, AttributeSet attrs) {  
        super(context, attrs);  
    }  
      
    @Override  
    public boolean onTouchEvent(MotionEvent ev) {  
        if (inner == null) {  
            return super.onTouchEvent(ev);  
        } else {  
            commOnTouchEvent(ev);  
        }  
  
        return super.onTouchEvent(ev);  
    }  
  
    public void commOnTouchEvent(MotionEvent ev) {  
        int action = ev.getAction();  
        switch (action) {  
        case MotionEvent.ACTION_DOWN:  
            x = ev.getX();  
            break;  
        case MotionEvent.ACTION_UP:  
  
            if (isNeedAnimation()) {  
                animation();  
            }  
  
            break;  
        case MotionEvent.ACTION_MOVE:  
            final float preX = x;  
            float nowX = ev.getX();  
            int deltaX = (int) (preX - nowX);  
            // 滚动   
            scrollBy(0, deltaX);  
  
            x = nowX;  
            // 当滚动到最左或者最右时就不会再滚动,这时移动布局   
            if (isNeedMove()) {  
                if (normal.isEmpty()) {  
                    // 保存正常的布局位置   
                    normal.set(inner.getLeft(), inner.getTop(), inner.getRight(), inner.getBottom());  
                }  
                // 移动布局   
                inner.layout(inner.getLeft() - deltaX/2, inner.getTop() , inner.getRight()- deltaX/2, inner.getBottom() );  
            }  
            break;  
  
        default:  
            break;  
        }  
    }  
  
    // 开启动画移动   
    public void animation() {  
        // 开启移动动画   
        TranslateAnimation ta = new TranslateAnimation(0, 0, inner.getTop(), normal.top);  
        ta.setDuration(200);  
        inner.startAnimation(ta);  
        // 设置回到正常的布局位置   
        inner.layout(normal.left, normal.top, normal.right, normal.bottom);  
        normal.setEmpty();  
    }  
    // 是否需要开启动画   
    public boolean isNeedAnimation() {  
        return !normal.isEmpty();  
    }  
    // 是否需要移动布局   
    public boolean isNeedMove() {  
        int offset = inner.getMeasuredWidth() - getWidth();  
        int scrollX = getScrollX();  
        if (scrollX == 0 || scrollX == offset) {  
            return true;  
        }  
        return false;  
    }  
}  


喜欢 (0)
加载中……