Android - FEATURE_NO_TITLE not working

后端 未结 1 1891
余生分开走
余生分开走 2021-01-22 05:33

I am trying to display my about us page via layout, so I don\'t need any title bar. I tried:

Dialog d = new Dialog(this);
d.setContentView(R.layout.about_us);
d.         


        
1条回答
  •  悲&欢浪女
    2021-01-22 06:01

    Pass a theme to your dialog can remove the title bar for you.

    1. Add the following code in your res/values/styles.xml:
    
    
    1. Pass the theme to your dialog:

    Dialog d = new Dialog(this, R.style.NoTitleDialog);

    0 讨论(0)
提交回复
热议问题