将 OnClick 侦听器添加到自定义对话框中的按钮
我有一个自定义对话框类,如下所示,其中 xmlView = R.layout.yourdialoglayout 有 2 个按钮。我如何向这些按钮添加监听器?
这是我的课程:
public class CustomDialog extends Dialog {
public CustomDialog(Context context,int theme,int xmlView) {
super(context,theme);
requestWindowFeature(Window.FEATURE_NO_TITLE); //Hide the title
this.setContentView(xmlView);
}
public void killDialog() {
dismiss();
}
}
I have a custom dialog class as follows where xmlView = R.layout.yourdialoglayout which has 2 buttons. How could I add listeners to these buttons?
heres my class:
public class CustomDialog extends Dialog {
public CustomDialog(Context context,int theme,int xmlView) {
super(context,theme);
requestWindowFeature(Window.FEATURE_NO_TITLE); //Hide the title
this.setContentView(xmlView);
}
public void killDialog() {
dismiss();
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像附加 Activity 一样简单地附加 OnClickListener,方法是使用 View.SetOnClickListener:
您可以以同样的方式将操作附加到其他按钮。
You can simply attach an OnClickListener just as you would for an Activity, by using View.SetOnClickListener:
You can attach an action to your other button the same way.
您可以使用
findViewById
查找按钮,并像往常一样在它们上设置OnClickListener
You can use
findViewById
to find the buttons, and setOnClickListener
on them as usual