[Android] How to Set Alert Dialog Title

Tadashi Shigeoka ·  Fri, May 31, 2013

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.