android将事件从子视图传递到父视图
作者:互联网
我有两个自定义视图,子级(相对布局)和父级(FrameLayout).轻触一次时,我希望让子进程处理该事件,但仍将其进一步传递给父进程,对于子进程中的任何其他事件,只需将其进一步传递而不进行处理即可.
子视图设置为match_parent.
这是我到目前为止的内容:
public class Child extends RelativeLayout implements View.OnTouchListener {
private class GestureListener extends GestureDetector.SimpleOnGestureListener {
@Override
public boolean onDown(MotionEvent e) {
return true;
}
@Override
public boolean onSingleTapUp(MotionEvent e) {
// process the event
return true;
}
}
public boolean onTouch(View view, MotionEvent motionEvent) {
return true;
}
@Override
public boolean dispatchTouchEvent(MotionEvent e) {
gestrDetect_.onTouchEvent(e);
return super.dispatchTouchEvent(e);
}
}
public class Parent extends FrameLayout {
public Parent(Context context, AttributeSet attrs) {
super(context, attrs);
setOnTouchListener(this);
}
@Override
public boolean onTouch(View view, MotionEvent event) {
return gestrDetect_.onTouchEvent(event);
}
}
当我在子视图中获得单击事件时,所有其他事件(如猛击或缩放)都不会传递给父项.什么是正确的方法来处理子事件中的某些事件子集,同时又将其中一些事件传递给父项?
编辑
我将代码更改为以下内容:
public class Child extends RelativeLayout implements View.OnTouchListener {
private class GestureListener extends GestureDetector.SimpleOnGestureListener {
@Override
public boolean onDown(MotionEvent e) {
return true;
}
@Override
public boolean onFling(android.view.MotionEvent e1, android.view.MotionEvent e2, float velocityX, float velocityY) {
return false;
}
@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
return false;
}
@Override
public boolean onSingleTapUp(MotionEvent e) {
// process the event
return true;
}
}
public boolean onTouch(View view, MotionEvent motionEvent) {
return gestrDetect_.onTouchEvent(e);
}
@Override
public boolean dispatchTouchEvent(MotionEvent e) {
return super.dispatchTouchEvent(e);
}
}
public class Parent extends FrameLayout {
@Override
public boolean onTouch(View view, MotionEvent event) {
return gestrDetect_.onTouchEvent(event);
}
}
并且事件仍未传递给父级.当我改变
@Override
public boolean onDown(MotionEvent e) {
return true;
}
至
return false;
我的孩子甚至都没有获得singleTapUp事件.
解决方法:
您需要创建父ViewGroup的自己的实现,并重写onInterceptTouchEvent()方法(请参阅本教程http://developer.android.com/training/gestures/viewgroup.html).
使用此方法,您可以确定with方法应由父级处理,并将其传递给子级.
标签:event-handling,events,android 来源: https://codeday.me/bug/20191122/2056810.html