Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the title in Dialog?

Tags:

android

dialog

I created an Activity as a dialog using the code below which I put in my manifest. But the problem is it has Title bar, how can I remove it?

android:theme="@android:style/Theme.Dialog"
like image 215
Leon Avatar asked Oct 03 '11 10:10

Leon


1 Answers

For those who are using AppCompatActivity, above answers may not work.

Try this

supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
immediately before setContentView(R.layout.my_dialog_activity);
like image 188
Attaullah Avatar answered Oct 15 '22 01:10

Attaullah