I have implemented the dialog in my app. But the title in the dialog by default in the left side. How can I make the dialog title in the center?
Here is my code
final Dialog dialog = new Dialog(getActivity());
dialog.setContentView(R.layout.contact_query);
dialog.setTitle("Query Form");
*Try this one *
For more information http://kodecenter.com/article?id=2390ec63-63d7-4534-a76f-cc3b10497a2c
If you use an AlertDialog Builder, create a layout for your dialog title (in which you can center the text for example), inflate it and give it to the builder. Like so :
res/layout/dialog_title.xml :
Java:
You can try this: