1

我知道这个问题看起来很简单,但不像以前的chei。所以你去:

在我使用支持库和 AppCompat v7 的 android 应用程序中,添加了一个 ActionBar。一切都很完美,除了当应用程序在 android 2.3 上运行时,ActionBar 的背景是黑暗的,而当 squeegee android 4.0.2 ActionBar 时这个背景变成灰色。

下面是如何定义我的@style

<resources>

    <!--
        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="@style/Theme.AppCompat.Light.DarkActionBar">
        <!--
            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>

</resources>

我该如何解决这个问题?

在此处输入图像描述 在此处输入图像描述

4

2 回答 2

2

如果您的最小目标是 API 级别 11,这将不适用于您的最小目标为 2.3.3,您可以更改背景颜色

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

    <style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">ANY_HEX_COLOR_CODE</item>
    </style>
</resources>
于 2013-10-12T03:24:32.047 回答
0

我想在这个问题上为未来的读者添加我的观察(使用 min sdk 8,target sdk 19)。

  • 如果您只想在不同的 android 版本中设置操作栏的背景颜色,在代码中更容易做到。

    actionBar = getSupportActionBar(); actionBar.setBackgroundDrawable(getResources().getDrawable(R.color.your_desired_color));

这会覆盖跨版本的默认背景并设置您想要的颜色。

注意:我在各种帖子上看到并尝试将背景颜色设置如下:

ColorDrawable colorDrawable = new ColorDrawable();
colorDrawable.setColor(R.color.your_desired_color);
actionBar.setBackgroundDrawable(colorDrawable);

但它不起作用,我暂时不知道原因。所以我成功地尝试了上面提到的代码。

  • 如果您想在代码中设置操作栏的背景颜色(以及其他属性),您可以使用样式和主题。我做了如下造型。

在 res/values/style.xml 里面

<resources>

    <!--
        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- API 11 theme customizations 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>

   <!-- custom theme for my app -->
    <style name="MyAppTheme" parent="AppTheme">
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

     <!-- ActionBar styles -->
    <style name="MyActionBar"  parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
         <item name="android:background">@color/bgcolor</item>
    </style>

</resources>

在 res/values-v11 和 res/values-v14 中

<resources>

    <!--
        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- API 11 theme customizations 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>

   <!-- custom theme for my app -->
    <style name="MyAppTheme" parent="AppTheme">
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

     <!-- ActionBar styles -->
    <style name="MyActionBar"  parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
         <item name="android:background">@color/bgcolor</item>
    </style>

</resources>

注意: 由于我必须在 android 版本中对操作栏有类似的外观,因此我已将代码从 res/values 复制粘贴到 res/values-v11 和 res/values-v14 中。但令我惊讶的是,我没有得到想要的结果。原因?我们需要在 android v11 及更高版本的标签之前添加“android”命名空间。所以我将actionBarStyle更改为android:actionBarStyle并将背景更改为android:background。这给我带来了想要的结果。

于 2014-06-20T07:36:53.687 回答