Android Dialog: Removing title bar

后端 未结 13 2245
醉酒成梦
醉酒成梦 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 19:11

    create your XML which is shown in dialog here it is activity_no_title_dialog

    final Dialog dialog1 = new Dialog(context);
    dialog1.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog1.setContentView(R.layout.activity_no_title_dialog);
    dialog1.show();
    

提交回复
热议问题