美文网首页
自定义样式去除标题栏(TItleBar)

自定义样式去除标题栏(TItleBar)

作者: HenryGao简书 | 来源:发表于2017-03-22 15:46 被阅读21次

    今天,写了一个 小的程序,美观起见,想要去除标题栏;当然,我们去除标题栏可以做的操作有很多,例如:

    必须要写在setContentView()前面的:

    this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏

    在AndroidManifest.xml文件修改:

    android:theme="@android:style/Theme.NoTitleBar"

    当然这样的操作都是 默认的操作选择。

    现在我们分享的是在自定义Style.xml中修改无标题栏:

    首先贴上代码:

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

    </style>

    然后在AndroidManifest.xml文件中:

    android:theme="@style/AppTheme"

    这里一定要注意parent的属性,设置为NoActionBar,

    相关文章

      网友评论

          本文标题:自定义样式去除标题栏(TItleBar)

          本文链接:https://www.haomeiwen.com/subject/rhczvttx.html