AlertDialog 的构建器类的 .create() 和 .show() 方法有什么区别吗?就像我们使用以下命令创建警报对话框一样:
AlertDialog.Builder builder = new
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setMessage("");
builder.setPositiveButton(....)
builder.setNegativeButton(....)
推荐使用什么练习,为什么?
builder.create() //I have seen this creates and displays the dialog
或者
builder.show() //this also displays the dialog
或者
builder.create().show() //well same thing
我已阅读文档。但无法从中理解任何意义。有任何想法吗 ?