Android Dialog: Removing title bar

后端 未结 13 2248
醉酒成梦
醉酒成梦 2020-11-29 18:24

I have a weird behavior I can\'t pinpoint the source of.

I have my app with the classic

requestWindowFeature(Window.FEATURE_NO_TITLE);
13条回答
  •  春和景丽
    2020-11-29 18:56

    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);
    

提交回复
热议问题