Notes on how to set the title of an AlertDialog in Android app development.
final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
alertDialogBuilder.setTitle("Title!");
[Reference]
・UIコンポーネント/AlertDialogの使い方 - Android Wiki*
That’s all from the Gemba.