我想創建一個新的主題,還有自定義工具欄:
<resources>
<style name="Theme.Shappy.Red" parent="Theme.Sherlock.Light">
<item name="android:actionBarStyle">@style/ActionBar.Shappy.Red</item>
...
... [some_other_customizations]
</style>
<!-- Action bar -->
<style name="ActionBar.Shappy.Red" parent="@style/Widget.Sherlock.Light.ActionBar.Solid">
<item name="android:background">#ffb70000</item>
<item name="android:titleTextStyle">@style/ActionBar.Title.Shappy.Red</item>
</style>
<!-- Action bar text -->
<style name="ActionBar.Title.Shappy.Red" parent="@style/TextAppearance.Sherlock.Widget.ActionBar.Title">
<item name="android:textColor">#ddffffff</item>
</style>
</resources>
正如上面所示,我使用Sherlock。這段代碼在 API 14上可以正常運行,但是在API 10上不行。我看到 Holo light像工具欄。我覺得這段代碼是正確的,因為 [some_other_customizations]
能正確應用。 大家的意見呢?
我覺得代碼是沒問題,但是既然你提到 holo.ligth 這個屬性和 API的級別這兩點,其實答案已經出來了,holo.light這個是4.0才有的屬性(可能3.0已經有了,沒接觸過3.0),API 10是對應android 2.3的,所以代碼在API 10上不能運行也就不奇怪了,正如同在4.0沒有titlebar,取而代之的是actionbar一樣。