3

我需要将操作栏的背景更改为自定义图像,但每次我尝试使用此代码时都不会改变任何东西。

Bitmap b =  BitmapFactory.decodeResource(getResources(), R.drawable.navbarbg);
BitmapDrawable bd = new BitmapDrawable(getResources(), b);
bar.setBackgroundDrawable(bd);

我也试过这段代码,但没有用。

Resources res = getResources();
xpp =res.getXml(R.drawable.actionbar_background);
bitmapDrawable = (BitmapDrawable) BitmapDrawable.createFromXml (res, xpp);

actionbar_background.xml 的内容是

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/navbarbg"
android:tileMode="repeat" />

编辑:我使用了这段代码,效果很好:

Bitmap bMap = BitmapFactory.decodeResource(res, R.drawable.action_bar_bg);
BitmapDrawable actionBarBackground = new BitmapDrawable(res, bMap);
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(actionBarBackground);
4

3 回答 3

10

我使用了这段代码,效果很好:

Bitmap bMap = BitmapFactory.decodeResource(res, R.drawable.action_bar_bg);
BitmapDrawable actionBarBackground = new BitmapDrawable(res, bMap);
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(actionBarBackground);
于 2013-01-31T12:37:11.797 回答
6

你可以通过玩styles.xml.Here is a detail explain来做到这一点。查看标记的答案。它是为 actionbarsherlock 解释的。但是方法是一样的。如果您需要更多详细信息。请参阅此链接,该链接也由其他回答者提供。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- the theme applied to the application or activity -->
    <style name="MyTheme" parent="@android:style/Theme.Holo">
        <!-- Here you are including your actual custom theme in which your own things are defined --> 
        <item name="android:actionBarStyle">@style/MyActionBar</item>
        <!-- other activity and action bar styles here -->
    </style>

    <!-- style for the action bar background which is named as "MyActionBar. The same name is being used in the above style." -->
    <style name="MyActionBar" parent="@android:style/Widget.Holo.ActionBar"> 
        <item name="android:background">@drawable/actionbar_background</item>
    </style>
</resources> 

不要忘记在清单文件中包含这个自定义主题,如下所示,以便在整个应用程序中生效。

<application android:theme="@style/MyTheme" />

如果您希望它仅用于特定活动,您甚至可以将这个主题包含在活动中。希望这可以帮助。

于 2012-12-31T17:14:01.170 回答
3
getActionBar().setBackgroundDrawable(
    getResources().getDrawable(R.drawable.navbarbg));
于 2014-09-06T15:32:48.237 回答