Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法仅将触摸事件分派给具有堆叠子项的自定义视图组中的特定子项。
只要您对想要接收事件的孩子和父母都有参考,您就可以实现父母以将触摸传递给您希望接收它的孩子。
你可以发布视图的代码吗?
所以你可以做这样的事情:
@Override public boolean onTouchEvent(Event e){ childToGetTheEvent.onTouchEvent(e); }
或者有什么理由你不能做这样的事情?