Мне не удалось понять, как обернуть эти предметы. Например, у меня есть это:
new AlertDialog.Builder(this).setTitle("Preferences").setMessage(
"user name: " + username + "\n" + "bio: " + bio + "\n" + "image: " + image + "\n" +
"notification: " + notif).show();
но я хочу это:
new AlertDialog.Builder(this)
.setTitle("Preferences")
.setMessage("user name: " + username + "\n" +
"bio: " + bio +"\n" +
"image: "+ image +"\n"+
"notification: "+ notif)
.show();