Difference between AlertDialog.builder's obj.create() vs obj.show() vs obj.create().show()
obj.create()-For create Dialog
obj.show()-For show Dialog
<- without it you cant show dialog if you created.
and
obj.create().show()-create and show Dialog i mean both same as above two in one statement.