为什么我的状态栏有这种颜色?我需要与工具栏相同的颜色(蓝色)
styles.xml
<style name="MFB" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionModeOverlay">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
settingsactivity.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_below="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
在主要活动中它的工作正常,看:
我不知道这里有什么问题...我在其他帖子中寻找答案但同样我得到了白色状态栏:/
谢谢:)对不起,如果这是一个菜鸟问题
修改
工具栏:
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
注意:我正在使用
"com.android.support:appcompat-v7:23.4.0"
"com.android.support:design:23.4.0"
答案 0 :(得分:1)
我认为问题一定是你没有为你的项目创建res/values-v21 folder
。要为Lollipop
和上层设备提供不同的样式,您必须在values-v21
目录中创建res
文件夹并在那里定义您的样式。
<强> styles.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppBaseTheme" parent="AppTheme">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@color/blue</item>
</style>
</resources>
答案 1 :(得分:1)
<style name="MFB" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionModeOverlay">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
在你的风格中改变android:statusBarColor。
<item name="android:statusBarColor">@color/blue</item>
它的工作。我希望它能解决你的问题。
答案 2 :(得分:1)
尝试删除<item name="android:statusBarColor">@android:color/transparent</item>
此行。状态栏采用colorPrimaryDark
的颜色。将此颜色设置为您想要的颜色。
见这个
修改强>
如果您想在应用的某个阶段更改状态栏的颜色,可以尝试使用
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(YOUR_COLOR);
答案 3 :(得分:0)
您需要做的就是在主题中设置这些属性:
真 真
您希望拥有透明状态栏的活动/容器布局需要设置此属性:
机器人:fitsSystemWindows =”真”
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
Window w = getWindow(); // in Activity's onCreate() for instance
w.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
}
否则通过此链接可以帮助您
completely transparent status bar and navigation bar on lollipop
希望有人帮助:)。
现在我只需要让它落后于可比性。