在style.xml 加入
<item name="android:windowNoTitle">true</item>
按理说可以把标题栏隐藏,但是当style是appCompat的某个主题的时候,这样自定义style好像不起作用,重新运行标题栏还在。在网上找了半天,终于找到解决方法了 -
把android:windowNoTitle改为 windowNoTitle ,重新运行就OK拉!
例:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="windowNoTitle">true</item>
</style>```