Android Dialog: Removing title bar

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

    You can also define Theme in android manifest file for not display Title bar..

    You just define theme android:theme="@android:style/Theme.Light.NoTitleBar" in activity where u dont want to display title bar

    Example:-

        
    
        
            
                
                
            
        
    
    
    

提交回复
热议问题