我正在使用Android原生动作栏。我想添加自己的drawable资源作为操作栏的背景。所以,我做了一个主题如下:
res / values / themes.xml:
<style name="Theme.MyStyle" parent="android:style/Theme.Holo.Light">
<item name="android:background">@drawable/my_bg</item>
</style>
然后,在 AndroidManifest.xml 文件中,我将此样式添加到我的应用程序中:
<application
android:debuggable="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.MyStyle"
>
<activity ...>
<activity .../>
...
</application>
但是,背景drawable被 NOT ONLY 应用于所有片段内容的但是操作栏。为什么呢?
我的第二个问题是,如何自定义溢出图标和操作栏上最左侧的“向上”按钮?
答案 0 :(得分:6)
试
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="Theme.MyStyle" parent="@android:style/Theme.Holo">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<!-- other activity and action bar styles here -->
</style>
<!-- style for the action bar backgrounds -->
<style name="MyActionBar" parent="@android:style/Widget.Holo.ActionBar">
<item name="android:background">@drawable/ab_background</item>
<item name="android:backgroundStacked">@drawable/ab_background</item>
<item name="android:backgroundSplit">@drawable/ab_split_background</item>
</style>
</resources>
customize the logo使用setDisplayUseLogoEnabled(boolean)