gpt4 book ai didi

android - (colorPrimaryDark) 状态栏颜色在 android v21 上不起作用?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:50:45 24 4
gpt4 key购买 nike

我在 style.xml 上添加了 colorPrimaryDark,但状态栏 android v21 没有影响颜色。

我有一个自定义工具栏,我在 style.xml 代码中没有使用操作栏主题

如果有任何解决方案请帮助我?

样式代码:-

 <style name="AppTheme" parent="AppTheme.Base">
<!-- Customize your theme here. -->
</style>

<style name="AppTheme.Base" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

<style name="myCustomToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
<item name="android:textColorSecondary">@color/colorAccent</item>
</style>

样式 v21 :-

  <style name="AppTheme" parent="AppTheme.Base">
<item name="android:colorPrimary">@color/colorPrimary</item>
<item name="android:colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="android:colorAccent">@color/colorAccent</item>

<item name="windowActionBar">true</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>

工具栏代码:-

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="56dp"
android:elevation="4dp"
android:background="@color/colorPrimary"
android:popupTheme="@style/Base.ThemeOverlay.AppCompat.Light"
xmlns:android="http://schemas.android.com/apk/res/android" />

主要布局代码

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<LinearLayout
android:fitsSystemWindows="true"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">

<include layout="@layout/custom_toolbar"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button1" />

</LinearLayout>


<android.support.design.widget.FloatingActionButton
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/fab"
android:layout_gravity="right|bottom"
android:src="@mipmap/ic_plus"
android:onClick="fabClick"
android:layout_marginRight="@dimen/fab_margin"
android:layout_marginBottom="@dimen/fab_margin_bottom"
fab:borderWidth="0dp"/>

最佳答案

我认为您的 CoordinatorLayout 缺少以下属性:android:fitsSystemWindows="true"

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:fitsSystemWindows="true">

关于android - (colorPrimaryDark) 状态栏颜色在 android v21 上不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33666019/

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