Android Dialog: Removing title bar

后端 未结 13 2192
醉酒成梦
醉酒成梦 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:17

    if you are using a custom view then remeber to request window feature before adding content view like this

    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setContentView(view);
    dialog.show();
    
    0 讨论(0)
提交回复
热议问题