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); }
それとも、このようなことをできない理由がありますか?