0
我想定製sherlock動作欄(背景顏色,字體顏色等)。何處爲操作欄添加自定義sherlock欄自定義主題?
我發現了一些有用的鏈接在這裏堆棧溢出,但我不知道,在哪裏把我的新主題XML配置文件,以及如何鏈接他們從AndroidManifest?
感謝您的任何幫助。
我想定製sherlock動作欄(背景顏色,字體顏色等)。何處爲操作欄添加自定義sherlock欄自定義主題?
我發現了一些有用的鏈接在這裏堆棧溢出,但我不知道,在哪裏把我的新主題XML配置文件,以及如何鏈接他們從AndroidManifest?
感謝您的任何幫助。
你必須在風格上添加這樣
<style name="Theme.MyApp.Default" parent="@style/Theme.Sherlock.Light">
<item name="actionBarStyle">@style/MyApp.SherlockActionBarStyle</item>
<item name="android:actionBarStyle">@style/MyApp.kActionBarStyle</item>
</style>
<style name="MyApp.ActionBarStyle" parent="@style/Widget.Sherlock.ActionBar">
<item name="android:background">#ff000000</item>
<item name="background">#ff000000</item>
<item name="android:textSize">@dimen/textsize</item>
<item name="textSize">@dimen/textsize</item>
<item name="android:textColor">@color/grey</item>
<item name="textColor">@color/grey</item>
</style>
謝謝你的回覆,但我不知道我應該把文件?我有3個樣式的目錄(值,值-V11,值-V14),我想爲全球的應用程序設置我的新風格。 – redrom
放入足夠的值,它將適用於所有的android版本 –