demo使用的sdk是32
自定义一个MyLayout,继承自LinearLayout,重写onInterceptTouchEvent
方法,返回true。如下:
package com.exp.clickdemo;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.LinearLayout;
import androidx.annotation.Nullable;
public class MyLayout extends LinearLayout {
public MyLayout(Context context) {
this(context,null);
}
public MyLayout(Context context, @Nullable AttributeSet attrs) {
this(context, attrs,0);
}
public MyLayout(Context context, @Nullable AttributeSet attrs,