如何为一个事件设置多个监听器?
我想为一个事件设置多个监听器,并且发现使用复合监听器是关键。
谁能给我举个例子吗?
I want to set up multiple listeners for one event, and have found that using composite listener is the key.
Could anyone give me an example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
……
.....
你可以尝试这个技巧
您将需要扩展视图,例如扩展按钮以接受多个 onclick 侦听器。
实现 OnclickListener 的内部类
您创建一个在子类按钮的构造函数中
,您调用 super.setOnclickListener在您的构造函数中传递内部类的实例:
集合中
您重写 setOnclickListener 方法以将侦听器添加到我没有的 尝试过,但我相信它会起作用
you can try this hack
you will need to extend the view e.g. extend the Button to accept multiple onclick listeners.
you create an inner class that implements OnclickListener
in the constructor of you sub-classed button, you call super.setOnclickListener passing an instance of you inner class
in your constructor you have:
you override the setOnclickListener method to add listeners to the collection
i have not tried it but i believe it will work
我知道已经晚了几年,但想添加我的版本,我刚刚花了几个小时开始工作。以下是位于文件 DBupdateEventListener.java 中的代码:
registeredListeners 是一个公共静态变量,这一点非常非常重要。这就是我在这个问题已经关闭几年后添加自己的答案的全部原因。
这是我在触发事件后需要更新的片段的 OnCreate() 方法中使用的代码:
这是我在异步任务中首先触发事件的代码:
I know it is several years late, but wanted to add my version that I just spent a few hours getting to work. Here is the code located in the file DBupdateEventListener.java:
it is very VERY important that registeredListeners is a public static variable. This is the whole reason that I added my own answer to this question several years after it had already been closed.
and here is the code I use in the OnCreate() method of the fragment that needs to be updated after the event is triggered:
and here is the code used in my asynchronous task that triggers the event in the first place: