在我的一个活动中,我使用Palette
更改工具栏颜色,但在使用ActionBarActivity
的5.0设备上,status bar
颜色是我的活动主题中colorPrimaryDark
的颜色,因此我有两种非常不同的颜色,看起来不太好。
我意识到在5.0中你可以使用Window.setStatusBarColor()
但ActionBarActivity
没有这个。
所以我的问题在5.0中如何用ActionBarActivity
更改状态栏颜色?
答案 0 :(得分:373)
我不确定我是否理解这个问题。
我想以编程方式更改状态栏颜色(如果设备已安装Android 5.0),那么可以使用Window.setStatusBarColor()
。无论活动是来自Activity
还是ActionBarActivity
,都不应该有所作为。
试着这样做:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(Color.BLUE);
}
刚刚使用ActionBarActivity
对此进行了测试,结果正常。
注意:如果您的FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS
样式文件已经设置,则无需以编程方式设置values-v21
标志,通过:
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
答案 1 :(得分:52)
有多种方法可以更改状态栏颜色。
1)使用styles.xml。您可以使用android:statusBarColor属性以简单但静态的方式执行此操作。
注意:您也可以将此属性与材质主题一起使用。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
</resources>
2)您可以使用Window类中的setStatusBarColor(int)方法动态完成它。但请记住,此方法仅适用于API 21或更高版本。所以一定要检查一下,否则你的应用肯定会在较低的设备中崩溃。
以下是此方法的一个工作示例。
if (Build.VERSION.SDK_INT >= 21) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.setStatusBarColor(getResources().getColor(R.color.primaryDark));
}
其中,primaryDark是我在我的应用中使用的700色原色。您可以在colors.xml文件中定义此颜色。
如果您有任何疑问,请试一试并告诉我。希望它有所帮助。
答案 2 :(得分:9)
我认为状态栏颜色尚未在AppCompat中实现。这些是可用的属性:
<!-- ============= -->
<!-- Color palette -->
<!-- ============= -->
<!-- The primary branding color for the app. By default, this is the color applied to the
action bar background. -->
<attr name="colorPrimary" format="color" />
<!-- Dark variant of the primary branding color. By default, this is the color applied to
the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
<attr name="colorPrimaryDark" format="color" />
<!-- Bright complement to the primary branding color. By default, this is the color applied
to framework controls (via colorControlActivated). -->
<attr name="colorAccent" format="color" />
<!-- The color applied to framework controls in their normal state. -->
<attr name="colorControlNormal" format="color" />
<!-- The color applied to framework controls in their activated (ex. checked) state. -->
<attr name="colorControlActivated" format="color" />
<!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
<attr name="colorControlHighlight" format="color" />
<!-- The color applied to framework buttons in their normal state. -->
<attr name="colorButtonNormal" format="color" />
<!-- The color applied to framework switch thumbs in their normal state. -->
<attr name="colorSwitchThumbNormal" format="color" />
(来自 \ sdk \ extras \ android \ support \ v7 \ appcompat \ res \ values \ attrs.xml )
答案 3 :(得分:3)
试试这个, 我使用了它,它与v21一起工作得非常好。
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimaryDark">@color/blue</item>
</style>
答案 4 :(得分:1)
感谢上述答案,在这些答案的帮助下,在某些R&amp; D for xamarin.android MVVMCross应用程序之后,下面的工作
为方法OnCreate
中的活动指定的标志protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
this.Window.AddFlags(WindowManagerFlags.DrawsSystemBarBackgrounds);
}
对于每个MvxActivity,主题如下所述
[Activity(
LaunchMode = LaunchMode.SingleTop,
ScreenOrientation = ScreenOrientation.Portrait,
Theme = "@style/Theme.Splash",
Name = "MyView"
)]
我的SplashStyle.xml如下所示
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Splash" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:statusBarColor">@color/app_red</item>
<item name="android:colorPrimaryDark">@color/app_red</item>
</style>
</resources>
我提到了V7 appcompact。
答案 5 :(得分:1)
[Kotlin版本]我创建了此扩展程序,该扩展程序还检查所需的颜色是否具有足够的对比度以隐藏系统UI,例如电池状态图标,时钟等,因此我们根据此设置系统UI为白色或黑色。 / p>
fun Activity.coloredStatusBarMode(@ColorInt color: Int = Color.WHITE, lightSystemUI: Boolean? = null) {
var flags: Int = window.decorView.systemUiVisibility // get current flags
var systemLightUIFlag = View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
var setSystemUILight = lightSystemUI
if (setSystemUILight == null) {
// Automatically check if the desired status bar is dark or light
setSystemUILight = ColorUtils.calculateLuminance(color) < 0.5
}
flags = if (setSystemUILight) {
// Set System UI Light (Battery Status Icon, Clock, etc)
removeFlag(flags, systemLightUIFlag)
} else {
// Set System UI Dark (Battery Status Icon, Clock, etc)
addFlag(flags, systemLightUIFlag)
}
window.decorView.systemUiVisibility = flags
window.statusBarColor = color
}
private fun containsFlag(flags: Int, flagToCheck: Int) = (flags and flagToCheck) != 0
private fun addFlag(flags: Int, flagToAdd: Int): Int {
return if (!containsFlag(flags, flagToAdd)) {
flags or flagToAdd
} else {
flags
}
}
private fun removeFlag(flags: Int, flagToRemove: Int): Int {
return if (containsFlag(flags, flagToRemove)) {
flags and flagToRemove.inv()
} else {
flags
}
}
答案 6 :(得分:0)
正在申请
<item name="android:statusBarColor">@color/color_primary_dark</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
Theme.AppCompat.Light.DarkActionBar
中的不适用于我。诀窍是,在styles.xml
中照常提供colorPrimaryDark
和android:colorPrimary
<item name="android:colorAccent">@color/color_primary</item>
<item name="android:colorPrimary">@color/color_primary</item>
<item name="android:colorPrimaryDark">@color/color_primary_dark</item>
和设置
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop)
{
Window window = this.Window;
Window.AddFlags(WindowManagerFlags.DrawsSystemBarBackgrounds);
}
不必在代码中设置状态栏颜色。
答案 7 :(得分:0)
如果您在 Android 中使用 Kotliln,则可以实现这一点:
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.statusBarColor = Color.WHITE
答案 8 :(得分:0)
在 kotlin
或 OnCreate()
的 Activity
中添加此 Fragment
代码:
if (Build.VERSION.SDK_INT >= 21) {
val window: Window = requireActivity().window
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
window.statusBarColor = resources.getColor(R.color.very_light_pink)
}