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"
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);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With