I have a weird behavior I can\'t pinpoint the source of.
I have my app with the classic
requestWindowFeature(Window.FEATURE_NO_TITLE);
use below code before setcontentview :-
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.custom_dialog);
Note:- above code must have to use above dialog.setContentView(R.layout.custom_dialog);
In XML use a theme
android:theme="@android:style/Theme.NoTitleBar"
also styles.xml:
And then:
Dialog dialog_hidetitle_example = new Dialog(context, R.style.hidetitle);