嵌套在屏幕 android 中的所有视图的事件
我有一个视图,其中嵌套了许多子视图(例如:LinearLayout、Edittext、Imageview、Button...)。在 Edittext 中填充文本后,我想将屏幕中所有视图(触摸/单击任何位置)的一个事件发送到新屏幕。我也在很多论坛上参考过,但找不到我的问题。请帮我解决这个问题吗?
I have a view with many child views nested in it (example: LinearLayout, Edittext, Imageview, Button...). After fill the text in Edittext, I want to send one event for all view in the screen (any position is touched/clicked) to the new screen. I also ref in many forum but can not find out my problem. Please help me this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定,但我认为您可以使用 ViewGroup 的
getChildCount
和getChildAt
函数。对于所有孩子,您都可以称之为此活动。I'm not sure but I think that you can use
getChildCount
andgetChildAt
functions of ViewGroup. And for all childs you can call this event.