改变背景android标题栏

时间:2013-10-01 09:05:39

标签: android titlebar custom-titlebar

我知道这个问题已被提出,但我无法弄清楚如何让它运作起来。我想改变标题栏的背景。

我不想改变关于我的应用程序风格或背景的任何其他内容。

我在这个网站上关注了各种帖子,但似乎都没有给出令人满意的结果。

我认为这就像设置

一样简单
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowTitleBackgroundStyle">@drawable/backrepeat</item>
</style>

在styles.xml中

然而,这并没有给出任何改变。

下面的completness是我的backrepeat文件

<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg_diamonds"
android:tileMode="repeat"
android:dither="true" 
/>

和manifest.xml中的代码

<application
android:allowBackup="true"
android:icon="@drawable/maxmm_start_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

2 个答案:

答案 0 :(得分:23)

您可以在创建活动时使用它。 (的onCreate)

ActionBar bar = getActionBar();
//for color
bar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#00C4CD")));
//for image
bar.setBackgroundDrawable(getResources().getDrawable(R.drawable.settings_icon));

答案 1 :(得分:10)

您可以使用此代码更改标题颜色在oncreate()中添加以下行:

ColorDrawable colorDrawable = new ColorDrawable(Color.parseColor("#20a780"));
    getSupportActionBar().setBackgroundDrawable(colorDrawable);