最简单的Dialog


new AlertDialog.Builder(this)
    .setMessage("着火了,快把手机扔掉啊")

    .setPositiveButton("Ok"null)

    .show();

你可能感兴趣的:(最简单的Dialog)