如何创建通知取消对话框?

发布于 2024-12-07 16:19:02 字数 97 浏览 1 评论 0原文

我有一条通知,告诉用户正在下载文件及其进度..
我想创建一个对话框,其中一些文本视图显示一些信息和 2 个按钮,分别是“关闭”和“停止”(停止下载)。
我该怎么做?

I have a notification which tells the user that its downloading a file with its progress..
I want to make a dialog with some textviews displaying some info and 2 buttons which are Close and Stop (stops the download).
How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

找个人就嫁了吧 2024-12-14 16:19:02

您可以使用 AlertDialog 类

    AlertDialog.Builder alertbox = new AlertDialog.Builder(this);
     alertbox.setMessage("Downloading");

    alertbox.setPositiveButton("Cancel", new DialogInterface.OnClickListener() {

        // do something when the button is clicked
        public void onClick(DialogInterface arg0, int arg1) {
           ..... //cancel code
        }
    });

    alertbox.setNegativeButton("Pause", new DialogInterface.OnClickListener() {

        // do something when the button is clicked
        public void onClick(DialogInterface arg0, int arg1) {
            .... //pause code
        }
    });

    // display box
    alertbox.show();

you can use the AlertDialog Class

    AlertDialog.Builder alertbox = new AlertDialog.Builder(this);
     alertbox.setMessage("Downloading");

    alertbox.setPositiveButton("Cancel", new DialogInterface.OnClickListener() {

        // do something when the button is clicked
        public void onClick(DialogInterface arg0, int arg1) {
           ..... //cancel code
        }
    });

    alertbox.setNegativeButton("Pause", new DialogInterface.OnClickListener() {

        // do something when the button is clicked
        public void onClick(DialogInterface arg0, int arg1) {
            .... //pause code
        }
    });

    // display box
    alertbox.show();
野稚 2024-12-14 16:19:02

您可以使用自定义对话框,其中文本视图在 xml 中定义,并且可以使用 xml 在自定义对话框中设置视图。

你可以这样编码:-

@Override
protected Dialog onCreateDialog(int id) {
    LayoutInflater factory = null;
        factory = LayoutInflater.from(this);
        dialogView = factory.inflate(R.layout.yourXml, null);

        return new AlertDialog.Builder(yourActivity.this)
            .setTitle(R.string.rate_title)
            .setView(dialogView)
            .setPositiveButton("Stop", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {

              // Add your stop code here
                }
            })
            .setNegativeButton("Close", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {

                // dismiss dialog here

                }
            })
            .create();

you can use a custom dialog where your text views are defined in xml and you can use your xml to set as view in your custom dialog box.

you can code like this:-

@Override
protected Dialog onCreateDialog(int id) {
    LayoutInflater factory = null;
        factory = LayoutInflater.from(this);
        dialogView = factory.inflate(R.layout.yourXml, null);

        return new AlertDialog.Builder(yourActivity.this)
            .setTitle(R.string.rate_title)
            .setView(dialogView)
            .setPositiveButton("Stop", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {

              // Add your stop code here
                }
            })
            .setNegativeButton("Close", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int whichButton) {

                // dismiss dialog here

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