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

6

あなたはそれをいじることによってそれを行うことができますstyles.xml.ここに詳細な説明があります . マークされた答えを見てください。アクションバーシャーロックについて説明します。しかし、アプローチは同じです。詳細が必要な場合。他の回答者からも提供されているこのリンクを参照してください。

<?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 に答える