gpt4 book ai didi

android - 如何设置自定义 ActionBar 颜色/样式?

转载 作者:IT老高 更新时间:2023-10-28 13:09:02 27 4
gpt4 key购买 nike

我在我的项目中使用 Android 导航栏,我想将操作栏中的顶部颜色更改为红色,我该怎么做?我有这样的东西,

top black

我想要这样的东西,

top red

我怎样才能做到这一点?

最佳答案

您可以通过创建自定义样式来定义 ActionBar(和其他东西)的颜色:

只需编辑您的 Android 项目的 res/values/styles.xml 文件。

例如这样:

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

<style name="MyActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">ANY_HEX_COLOR_CODE</item>
</style>
</resources>

然后将“MyCustomTheme”设置为包含 ActionBar 的 Activity 的主题。

您还可以像这样为 ActionBar 设置颜色:

ActionBar actionBar = getActionBar();
actionBar.setBackgroundDrawable(new ColorDrawable(Color.RED)); // set your desired color

取自这里:How do I change the background color of the ActionBar of an ActionBarActivity using XML?

关于android - 如何设置自定义 ActionBar 颜色/样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18288402/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com