溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CustomViewpager

發(fā)布時(shí)間:2020-06-12 06:32:02 來(lái)源:網(wǎng)絡(luò) 閱讀:452 作者:truesea 欄目:開發(fā)技術(shù)

mViewGroup.requestDisallowInterceptTouchEvent(false);

request dis-allow intercept touch event.

參數(shù)為true時(shí),請(qǐng)求不允許攔截Touch事件。

public class CustomListView extends ListView {
                                              
    private ViewGroup parentView;
                                              
    public void setParentView(ViewGroup parentView) {
        this.parentView = parentView;
    }
    public CustomListView(Context context) {
        super(context);
    }
    public CustomListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }
    public CustomListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
                                              
    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        switch (ev.getAction()) {
        case MotionEvent.ACTION_DOWN:
        case MotionEvent.ACTION_MOVE:
            parentView.requestDisallowInterceptTouchEvent(true);
            break;
        case MotionEvent.ACTION_UP:
        case MotionEvent.ACTION_CANCEL:
            parentView.requestDisallowInterceptTouchEvent(false);
            break;
        }
        return super.onTouchEvent(ev);
    }
}


參考資料:

1.requestDisallowInterceptTouchEvent

http://www.cnblogs.com/lqminn/archive/2013/03/02/2940194.html

2.android之ScrollView里嵌套ListView

http://www.eoeandroid.com/thread-246995-1-1.html

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI