如果用户在警报对话框中按“是”按钮,如何在列表中添加项目,而如果按“否”则不添加该项目

发布于 2024-11-26 03:30:53 字数 92 浏览 0 评论 0原文

我正在制作一个应用程序,如果用户选择 子菜单项我弹出一个警报对话框,要求他确认 他是否希望将该项目保存在他的列表中,如果他愿意,则保存它 按“是”,如果按“否”则不添加。

I am making an app in which if a user selects a
submenu item I pop up an Alert dialog which asks his confirmation
whether he wishes to save that item in his list and saves it if he
presses yes and doesn't add it if he presses no.

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

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

发布评论

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

评论(2

ヅ她的身影、若隐若现 2024-12-03 03:30:53

您可以使用它来显示警报:

AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setMessage("Are you sure to do this?").setCancelable(false).setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    doSomeThing();
                                            dialog.cancel();
                }
            }).setNegativeButton("No", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    dialog.cancel();
                }
            });
    AlertDialog alert = builder.create();
    alert.show();

You can use this to show alert:

AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setMessage("Are you sure to do this?").setCancelable(false).setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    doSomeThing();
                                            dialog.cancel();
                }
            }).setNegativeButton("No", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    dialog.cancel();
                }
            });
    AlertDialog alert = builder.create();
    alert.show();
救星 2024-12-03 03:30:53

您将从对话框中获取的元素添加到用于提供 Adapter 的 ArrayList,然后提供 cursor = new yourAdapter(YourClass.this.getBaseContext(), android.R.layout。 simple_list_item_1, dataList);

调用 cursor.notifyDataSetChanged(); 告诉列表重新填充新数据;

You add the element you get from the dialog to the ArrayList you use to feed your Adapter then feed the cursor = new yourAdapter(YourClass.this.getBaseContext(), android.R.layout.simple_list_item_1, dataList);

Call cursor.notifyDataSetChanged(); which tells the list to repopulate with the new data;

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