gpt4 book ai didi

Android 状态栏背景颜色设置为 R.attr.colorPrimary 但使用了错误的颜色

转载 作者:行者123 更新时间:2023-11-29 17:46:01 32 4
gpt4 key购买 nike

使用新的 Lollipop v21 API,我尝试使用 setStatusBarBackgroundColor 设置半透明状态栏的背景颜色,但使用 R.attr.colorPrimary 会导致颜色错误(它使用紫色而不是我指定为 colorPrimary 的浅蓝色)。

如何正确设置我的原色,以便 R.attr.colorPrimary 引用我在 styles.xml 中设置的 colorPrimary?

这是有问题的代码:

nav_drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
nav_drawer.setStatusBarBackgroundColor(R.attr.colorPrimary);

这是我的 styles.xml 中的相关部分:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

<!-- Use Lollipop's animated hamburger-arrow as drawer indicator -->
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>

<!-- Action Mode's bar overlays the app bar instead of pushing it down-->
<item name="windowActionModeOverlay">true</item>

<!-- Status Bar is translucent -->
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:windowTranslucentStatus">true</item>

<!-- Colors -->
<item name="colorPrimary">@color/lightblue</item>

</style>

是的,我实际上在我的 list 中使用了这个 AppTheme:

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

最佳答案

根据 setStatusBarBackgroundColor documentation :

Parameters

color Color to use as a background drawable to draw behind the status bar in 0xAARRGGBB format.

但是您传递的是属性 ID。您需要解码该属性以获得实际颜色:

 TypedValue typedValue = new  TypedValue();
context.getTheme().resolveAttribute(R.attr.colorPrimary, typedValue, true);
final int color = typedValue.data;
nav_drawer.setStatusBarBackgroundColor(color);

关于Android 状态栏背景颜色设置为 R.attr.colorPrimary 但使用了错误的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26696344/

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