由于水平原因,博客大部分内容摘抄于网络,如有错误或者侵权请指出,本人将尽快修改

android 去掉主题

 

1 可以在xml中配置2.0之后

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar" >

2 编程配置

requestWindowFeature(Window.FEATURE_NO_TITLE);

3.styles.xml 4.0之后

<!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">

        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
        <item name="android:windowNoTitle">true</item>
    </style>
posted @ 2016-03-01 09:44  小纸条  阅读(498)  评论(0编辑  收藏  举报