Android的ScrollView控件默認是沒有反彈效果的,當滑動到邊緣的時候便不能繼續滑動。這裡通過自定義ScrollView來實現反彈效果。看下面的效果圖,紅色圖片在最左邊,android默認ScrollView控件紅色圖片在最左邊的時候是不能向右滾動的。
這裡是水平滾動,我們可以通過自定義類繼承自HorizontalScrollView類來實現。
源碼下載地址:
**************************************************************
下載在Linux公社的1號FTP服務器裡,下載地址:
FTP地址:ftp://www.linuxidc.com
用戶名:www.linuxidc.com
密碼:www.muu.cc
在 2012年LinuxIDC.com\3月\Android自定義ScrollView實現反彈效果【附源碼】
下載方法見 http://www.linuxidc.net/thread-1187-1-1.html
**************************************************************
- 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;
- }
- }