public void MsgBox(String title, String msg){

    AlertDialog.Builder dlgAlert  = new AlertDialog.Builder(this);

    dlgAlert.setMessage("The message");
    dlgAlert.setTitle("Titel");

    dlgAlert.setPositiveButton("OK", null);

    dlgAlert.create().show();
}


这是我正在使用的方法,我不明白它有什么问题。我什至用您要添加的通用代码替换了null,但是该框仍然不会弹出。有什么建议么?

最佳答案

尝试:

 new AlertDialog.Builder(this.getContext());


也许您不是从实际上是活动的类中调用它

10-07 20:10