爲什麼我的狀態欄有這種顏色?我需要的顏色與工具欄相同(藍色)狀態欄顏色錯誤
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>
在主要活動及其工作好吧,看:
我不知道什麼是錯在這裏......我所期望的是其他職位的答案,但同樣我得到了白狀態欄:/
謝謝:)和遺憾,如果它是一個noob問題
編輯
Toolbar.xml:
<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"/>
注意:在使用 IM
"com.android.support:appcompat-v7:23.4.0"
"com.android.support:design:23.4.0"
第一的所有指定什麼是您的設備版本,並張貼'工具欄'佈局文件如何申請? – Ironman