I am trying to use dialogs in Android. In the process, I ran into lines of code as follows:
alertDialogBuilder
.setMessage("Click yes to exit!")
.setCancelable(false)
.setPositiveButton("Yes",new...
This designation is a little strange for me as an old C ++ programmer. This is the same as
alertDialogBuilder.setMessage("Click yes to exit!");
alertDialogBuilder.setCancelable(false);
alertDialogBuilder.setPositiveButton("Yes",new...
If so, is this musical part of Java or unique to Android programming? What is the name of this notation (or method)?
source
share