将 OnClick 侦听器添加到自定义对话框中的按钮

发布于 2024-12-01 03:04:55 字数 421 浏览 0 评论 0原文

我有一个自定义对话框类,如下所示,其中 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 技术交流群。

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

发布评论

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

评论(2

默嘫て 2024-12-08 03:04:55

您可以像附加 Activity 一样简单地附加 OnClickListener,方法是使用 View.SetOnClickListener

public CustomDialog(Context context, int theme, int xmlView)
{
    super(context,theme);
    requestWindowFeature(Window.FEATURE_NO_TITLE); // hide the title
    this.setContentView(xmlView);

    // your special button
    Button yourButton = findViewById(R.id.yourbutton);
    yourButton.setOnClickListener(new OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            // your action
        }
    });
}

您可以以同样的方式将操作附加到其他按钮。

You can simply attach an OnClickListener just as you would for an Activity, by using View.SetOnClickListener:

public CustomDialog(Context context, int theme, int xmlView)
{
    super(context,theme);
    requestWindowFeature(Window.FEATURE_NO_TITLE); // hide the title
    this.setContentView(xmlView);

    // your special button
    Button yourButton = findViewById(R.id.yourbutton);
    yourButton.setOnClickListener(new OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            // your action
        }
    });
}

You can attach an action to your other button the same way.

朮生 2024-12-08 03:04:55

您可以使用 findViewById 查找按钮,并像往常一样在它们上设置 OnClickListener

You can use findViewById to find the buttons, and set OnClickListener on them as usual

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