2012-01-13 80 views

回答

8

我能够重现这对我的歌Nexus S运行Android 4.0.3

这里是我如何使它工作

  1. 创建一个主题:。

    <style name="MyApp.Theme.Light.NoTitleBar" parent="@android:style/Theme.Light.NoTitleBar"> 
        <item name="android:textColorPrimaryInverse">@android:color/primary_text_light 
        </item> 
    </style> 
    
  2. MyApp.Theme.Light.NoTitleBar主题应用于我的申请/活动清单。

    <application 
         android:name=".MyApp" 
         android:icon="@drawable/ic_launcher" 
         android:label="@string/app_name" 
         android:theme="@style/MyApp.Theme.Light.NoTitleBar" 
        > 
    
+0

我修正了它,改变了特定活动的主题。 – HannahMitt 2012-03-05 23:00:30