91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android滑動控件的滑動慣性效果實現

發布時間:2024-08-29 18:40:15 來源:億速云 閱讀:82 作者:小樊 欄目:移動開發

在Android中,實現滑動控件的滑動慣性效果通常使用Scroller

  1. 首先,創建一個自定義的滑動控件,繼承自ViewGroup(例如LinearLayoutRelativeLayout等)。
public class InertiaScrollView extends LinearLayout {
    // ...
}
  1. 在自定義控件的構造方法中,初始化Scroller對象和其他相關變量。
private Scroller mScroller;
private VelocityTracker mVelocityTracker;
private int mTouchSlop;
private float mLastMotionX;
private float mLastMotionY;

public InertiaScrollView(Context context, AttributeSet attrs) {
    super(context, attrs);
    mScroller = new Scroller(context);
    ViewConfiguration config = ViewConfiguration.get(context);
    mTouchSlop = config.getScaledTouchSlop();
}
  1. 重寫onInterceptTouchEvent方法,攔截觸摸事件。
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
    final int action = ev.getAction();
    if ((action == MotionEvent.ACTION_MOVE) && (mIsBeingDragged)) {
        return true;
    }

    switch (action & MotionEvent.ACTION_MASK) {
        case MotionEvent.ACTION_MOVE: {
            final float x = ev.getX();
            final float y = ev.getY();
            final int xDiff = (int) Math.abs(x - mLastMotionX);
            final int yDiff = (int) Math.abs(y - mLastMotionY);
            if (yDiff > mTouchSlop) {
                mIsBeingDragged = true;
                mLastMotionY = y;
            }
            break;
        }

        case MotionEvent.ACTION_DOWN: {
            mIsBeingDragged = false;
            mLastMotionX = ev.getX();
            mLastMotionY = ev.getY();
            break;
        }

        case MotionEvent.ACTION_CANCEL:
        case MotionEvent.ACTION_UP: {
            mIsBeingDragged = false;
            break;
        }
    }

    return mIsBeingDragged;
}
  1. 重寫onTouchEvent方法,處理觸摸事件。
@Override
public boolean onTouchEvent(MotionEvent event) {
    initVelocityTrackerIfNotExists();
    mVelocityTracker.addMovement(event);

    final int action = event.getAction();
    switch (action) {
        case MotionEvent.ACTION_DOWN: {
            if (!mScroller.isFinished()) {
                mScroller.abortAnimation();
            }
            mLastMotionX = event.getX();
            mLastMotionY = event.getY();
            break;
        }

        case MotionEvent.ACTION_MOVE: {
            final float x = event.getX();
            final float y = event.getY();
            final int deltaX = (int) (mLastMotionX - x);
            final int deltaY = (int) (mLastMotionY - y);
            mLastMotionX = x;
            mLastMotionY = y;

            scrollBy(0, deltaY);
            break;
        }

        case MotionEvent.ACTION_UP: {
            final VelocityTracker velocityTracker = mVelocityTracker;
            velocityTracker.computeCurrentVelocity(1000);
            int initialVelocity = (int) velocityTracker.getYVelocity();
            if ((Math.abs(initialVelocity) > mMinimumVelocity)) {
                fling(-initialVelocity);
            }

            if (mVelocityTracker != null) {
                mVelocityTracker.recycle();
                mVelocityTracker = null;
            }
            break;
        }

        case MotionEvent.ACTION_CANCEL: {
            if (mVelocityTracker != null) {
                mVelocityTracker.recycle();
                mVelocityTracker = null;
            }
            break;
        }
    }

    return true;
}
  1. 實現fling方法,用于處理慣性滾動。
private void fling(int velocityY) {
    mScroller.fling(0, getScrollY(), 0, velocityY, 0, 0, Integer.MIN_VALUE, Integer.MAX_VALUE);
    invalidate();
}
  1. 重寫computeScroll方法,用于計算滾動偏移。
@Override
public void computeScroll() {
    if (mScroller.computeScrollOffset()) {
        int oldY = getScrollY();
        int y = mScroller.getCurrY();
        if (oldY != y) {
            scrollTo(0, y);
        }
        postInvalidate();
    }
}
  1. 最后,不要忘記在自定義控件的onDetachedFromWindow方法中釋放VelocityTracker對象。
@Override
protected void onDetachedFromWindow() {
    super.onDetachedFromWindow();
    if (mVelocityTracker != null) {
        mVelocityTracker.recycle();
        mVelocityTracker = null;
    }
}

現在,你已經實現了一個具有滑動慣性效果的自定義滑動控件。你可以根據需要對其進行進一步的優化和擴展。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高邑县| 保德县| 丽江市| 海城市| 翼城县| 海晏县| 龙陵县| 淮阳县| 萝北县| 成都市| 池州市| 盐津县| 中超| 密山市| 沛县| 诏安县| 松阳县| 广宁县| 上蔡县| 嘉禾县| 台州市| 华安县| 鹤岗市| 清苑县| 花莲市| 白河县| 信宜市| 阳信县| 虹口区| 乌审旗| 岗巴县| 四会市| 丰台区| 铜川市| 沅陵县| 湘西| 莆田市| 静海县| 义马市| 星座| 建昌县|