一次性将程序中所有的activity的标题栏隐藏

首先在res\values下的styles.xml中加入以下自定义主题样式代码

<style name="AppTheme" parent="android:Theme.Light"> 

   <item name="android:windowNoTitle">true</item>    
    <!-- Customize your theme here. -->
</style>

然后在清单文件manifest.xml中加入以下代码,将主题样式引用过去

<application  
  
  ......    
  
  android:icon="@drawable/ic_launcher"    
  android:label="@string/app_name"    
  android:theme="@style/AppTheme" >


你可能感兴趣的:(一次性将程序中所有的activity的标题栏隐藏)