为什么Button类中没有getOnClickListener? (安卓)
为什么Button类中没有getOnClickListener?考虑到有 getOnFocusChangeListener 函数,我认为这真的很奇怪。为什么要为 FocusChangeListener 而不是为 ClickListener 创建它?
添加评论:
对于下面那些想知道为什么我需要这个的人:我们正在开发一个大型应用程序,屏幕上有很多视图组。我想向屏幕上的按钮添加一些代码,但不替换完整的 OnClickListener。我想实现一个新的 OnClickListener,它将运行一些代码并调用旧的 OnClickListener。但为此我需要找回旧的。
Why is there no getOnClickListener in the Button class? I think this is really strange considering there is a getOnFocusChangeListener function. Why make it for the FocusChangeListener and not for the ClickListener?
Added comment:
For those below that are wondering why I need this: We are developing a large application with a lot of viewgroups on the screen. I want to add some code to a button on the screen but not replace the complete OnClickListener. I want to implement a new OnClickListener that will run some code and call the old OnClickListener. But for that I need to retrieve the old one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道为什么没有,但你可以通过扩展按钮类来做你想做的事情:
I don't know why there is not, but you can do what you want to do by extending the button class:
我认为这是 Google 的一个问题:D
为什么你需要找回 onClickListener?如果你实在是太绝望了,请将其存储在标签中(Views.setTag(...));
I think it's a question to Google :D
Why do you need to get a onClickListener back? If you are so desperate, store it in a tag (Views.setTag(...));