2014-02-27 72 views
0

可以更改titelbar外觀?我會讓它透明,並改變默認設置圖標與自定義圖像。這是我的主題是如何寫:修改標題欄顏色和設置圖標

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

</style> 

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

    <item name="android:windowBackground">@drawable/my_bg</item> 

</style> 

回答

0
<style name="AppTheme" parent="@android:style/Theme.DeviceDefault"> 
    <item name="android:textColor">#colorhere</item> 
    <item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground</item> 
</style> 

<style name="WindowTitleBackground">  
    <item name="android:background">#colorhere</item>  
</style> 

,不要忘記檢查

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

仍然不起作用。 – giozh