gpt4 book ai didi

android - 无法更改 ActionBar 的背景颜色

转载 作者:太空狗 更新时间:2023-10-29 15:52:45 25 4
gpt4 key购买 nike

我想更改我的 Android 应用程序的背景颜色,但我做不到。我搜索了很多帖子,但没有一个解决方案解决了我的问题。

这是我的 styles.xml:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>

<style name="ActionBar" parent="Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background">#ff0000</item>
</style>


</resources>

如您所见,我只是想将栏设置为红色。这是我的 list :

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MenuActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

如您所见,主题已正确设置。只是为了让您看到,这是我的 gradle:

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
...
minSdkVersion 15
targetSdkVersion 21



}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}

因此,尽管这看起来不错,但它并没有将我的 ActionBar 设置为红色。我尝试遵循很多指南(包括官方指南)并且我已经按照他们说的做了所有事情。我错过了什么?预先感谢您的耐心等待:)

最佳答案

由于您使用的是 AppCompat 库,因此您也应该处理较旧的 android 版本(就像使用 ActionBarSherlock 库时一样):

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/ActionBar</item>
<item name="actionBarStyle">@style/ActionBar</item>
</style>

<style name="ActionBar" parent="Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background">@android:color/red</item>
<item name="background">@android:color/red</item>
</style>
</resources>

没有 android 命名空间的项目用于设置旧 android 版本上使用的 appcompat 操作栏的样式。

参见 this answer以供进一步引用。

您还应该检查一下,您是否可能为各种屏幕尺寸和 sdk 版本生成了更多 styles.xml 文件。

您可能还想将您的 ActionBar 样式声明添加到这些其他样式:看起来您的测试设备使用的是另一种样式,而不是默认样式。

关于android - 无法更改 ActionBar 的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27556031/

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