1

我正在尝试在单击“删除”按钮时弹出一个对话框选项。但是,当我单击按钮时,我没有得到任何响应。没有发生错误我想知道我是否完全错过了一些东西。

  deleteModule = (Button)findViewById(R.id.deleteButton);
        deleteModule.setOnClickListener(this);
    }

    public void onClick (View deleteModule) 
    {
         Dialog(rowId);


    }

    public void Dialog (final String rowId) {
        // Use the Builder class for convenient dialog construction
        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setMessage(R.string.confirmDelete)
               .setPositiveButton(R.string.confirmDelete, new DialogInterface.OnClickListener() {
                   public void onClick(DialogInterface dialog, int id) {
                     MODULEDATABASE = new database(ViewCourse.this);
                     MODULEDATABASE.deleteRow(rowId);
                     Intent intent = new Intent(ViewCourse.this, MyCourses.class);
                     startActivity(intent);

                   }
               })
               .setNegativeButton(R.string.confirmDelete, new DialogInterface.OnClickListener() {
                   public void onClick(DialogInterface dialog, int id) {
                      dialog.cancel();
                   }


  }).create();
}
4

2 回答 2

1

我认为您需要添加:

builder.show()
于 2012-11-04T17:20:39.967 回答
0

您必须调用show()构建器上的方法才能使对话框可见。以下是有关创建和显示对话框的更多信息:http: //developer.android.com/guide/topics/ui/dialogs.html

我希望这有帮助。

于 2012-11-04T17:26:31.990 回答