0

アプリケーションの作業中に、カスタム ActionBar ビューを使用しました。

this.getSupportActionBar().setCustomView(R.layout.actionbar_bg);
this.getSupportActionBar().setDisplayShowCustomEnabled(true);

残念ながら、ご覧のとおり、ActionBar 全体がカスタマイズされておらず、アイコンにはデフォルトのアクションバーの背景があります。

それを修正する方法はありますか?

ここに画像の説明を入力

4

2 に答える 2

0

私の現在の回避策:

<resources>
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/MyActionBar</item>
</style>

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
    <item name="android:background">ANY_HEX_COLOR_CODE</item>
</style>
于 2012-08-25T09:33:22.127 に答える