text 简单警报对话框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 简单警报对话框相关的知识,希望对你有一定的参考价值。

DialogInterface.OnClickListener dialogClickListener = new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        switch (which) {
            case DialogInterface.BUTTON_POSITIVE:
                mRootRef.child(tasksList.get(position).getTaskID()).removeValue();
                break;

            case DialogInterface.BUTTON_NEGATIVE:
                break;
        }
    }
};

AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setMessage("Do you want to delete this Task?")
    .setPositiveButton("Yes", dialogClickListener)
    .setNegativeButton("No", dialogClickListener).show();

return true;

以上是关于text 简单警报对话框的主要内容,如果未能解决你的问题,请参考以下文章

Flutter:bloc,如何显示警报对话框

asp.net 中的甜蜜警报确认对话框

如果前面没有警报,我的 jQuery UI 对话框不会打开

如何在每次打开日期范围选择器对话框时显示警报?

如何使用此按钮中的条件在颤动中显示警报对话框?

更改构建版本后 Android 自定义警报对话框显示错误