Possible Duplicate:
Android: How to create a Dialog without a title?
How I can remove the title header from dialog in Android, which is in Gray colour.
Possible Duplicate:
Android: How to create a Dialog without a title?
How I can remove the title header from dialog in Android, which is in Gray colour.
In case if you aren't extending. dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
In case if you are extending the Class from Dialog:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
It will help you. Thanks
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
I think, FEATURE_NO_TITLE works when creating a dialog,
Dialog dialog = new Dialog(context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);