gpt4 book ai didi

android - 颜色 "splitActionBarWhenNarrow"底部操作栏

转载 作者:行者123 更新时间:2023-11-29 20:58:31 25 4
gpt4 key购买 nike

我有一个 MainActivity extends ActionBarActivity ,我想为我的操作栏着色 我使用了自定义样式,我使用的自定义样式的问题需要 Api 11 至少我尝试使用:

getSupportActionBar().setBackgroundDrawable(new ColorDrawable(Color.parseColor("#0099cc"))); 

但底部 ActionBar 没有着色 enter image description here

这是我的样式.xml:

<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">

<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

最佳答案

如果你想为你的拆分操作栏着色,你将不得不使用 android:backgroundSplit。以下代码将为您提供帮助。

    <style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#9933CC</item>
<item name="android:backgroundSplit">#9933CC</item>
<item name="android:titleTextStyle">@style/myTheme.ActionBar.Text</item>


</style>

<style name="myTheme.ActionBar.Text" parent="@android:style/TextAppearance">
<item name="android:textColor">#FFFFFF</item>
<item name="android:typeface">monospace</item>
<item name="android:textStyle">bold</item>
</style>

关于android - 颜色 "splitActionBarWhenNarrow"底部操作栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26887619/

25 4 0