展会信息港展会大全

Android自定义ScrollView实现反弹效果
来源:互联网   发布日期:2015-10-03 10:51:33   浏览:2420次  

导读:android 的ScrollView控件默认是没有反弹效果的,当滑动到边缘的时候便不能继续滑动。这里通过自定义ScrollView来实现反弹效果。看下面的效果 图,红色图片在最左边,android默认ScrollView控件红色图片在最左......

android 的ScrollView控件默认是没有反弹效果的,当滑动到边缘的时候便不能继续滑动。这里通过自定义ScrollView来实现反弹效果。看下面的效果 图,红色图片在最左边,android默认ScrollView控件红色图片在最左边的时候是不能向右滚动的。

这里是水平滚动,我们可以通过自定义类继承自HorizontalScrollView类来实现。

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;

}

}

赞助本站

人工智能实验室

相关热词: ScrollView

AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港