I\'m developing an Android application.
How can I center the title for a custom dialog that I\'m using?
If you don't call AlertDialog.Builder.setIcon() and AlertDialog.Builder.setTitle(), then your custom dialog will not show the built-in/default title View. In this case you are able to add your custom title View:
AlertDialog.Builder.setView(View view)
As soon as it is you who create this View it is possible to implement any type of alignment.