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