为什么Button类中没有getOnClickListener? (安卓)

发布于 2024-12-04 15:55:35 字数 311 浏览 1 评论 0原文

为什么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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

羁客 2024-12-11 15:55:35

我不知道为什么没有,但你可以通过扩展按钮类来做你想做的事情:

public class Button extends android.widget.Button implements OnClickListener {

    public void onClick(View v) {

        /* Your code here...*/

        super().onClick(v);
    }
}

I don't know why there is not, but you can do what you want to do by extending the button class:

public class Button extends android.widget.Button implements OnClickListener {

    public void onClick(View v) {

        /* Your code here...*/

        super().onClick(v);
    }
}
静待花开 2024-12-11 15:55:35

我认为这是 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(...));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文