Android状态栏StatusBar颜色修改

复制代码
<!-- 文字及图标颜色:true为深色,false为浅色 -->
<item name="android:windowLightStatusBar">true</item>
<!-- 背景色 -->
<item name="android:statusBarColor">?android:attr/colorPrimary</item>

去除actionbar

复制代码
<resources xmlns:tools="http://schemas.android.com/tools">
    <!-- Base application theme. -->

    <style name="Theme.Pine" parent="Theme.MaterialComponents.DayNight.NoActionBar">
        <!-- Primary brand color. -->
        <item name="colorPrimary">@color/purple_200</item>
        <item name="colorPrimaryVariant">@color/purple_700</item>
        <item name="colorOnPrimary">@color/black</item>
        <!-- Secondary brand color. -->
        <item name="colorSecondary">@color/teal_200</item>
        <item name="colorSecondaryVariant">@color/teal_200</item>
        <item name="colorOnSecondary">@color/black</item>
        <!-- Status bar color. -->
        <!-- 文字及图标颜色:true为深色,false为浅色 -->
        <item name="android:windowLightStatusBar">true</item>
        <!-- 背景色 -->
        <item name="android:statusBarColor">@color/white</item>
        <!-- Customize your theme here. -->

    </style>
</resources>

核心代码:

复制代码
<style name="Theme.Pine" parent="Theme.MaterialComponents.DayNight.NoActionBar">
复制代码
<!-- 文字及图标颜色:true为深色,false为浅色 -->
<item name="android:windowLightStatusBar">true</item>
<!-- 背景色 -->
<item name="android:statusBarColor">@color/white</item>
相关推荐
solo_998 小时前
用 LSPosed 模拟录屏音频编码器卡顿:从思路到落地
android
zzq77978 小时前
别把大模型 API Key 写进 APK:移动 AI 应用接口防盗刷实践
android·人工智能·安全·app加固·御盾安全·安卓加固
xiaopang10 小时前
RK3568 AOSP 编译与快速部署实战
android
码农coding11 小时前
android12 SystemUI之通知
android
summerkissyou198711 小时前
android - 性能 - Perfetto - cpu 分析教程及例子
android·性能
AFinalStone13 小时前
Android 7系统休眠唤醒(七)内核层—wakelock与autosleep机制
android·休眠唤醒
starvapour13 小时前
在关机键损坏的情况下让手机关机
android·adb·手机
AFinalStone13 小时前
Android 7系统休眠唤醒(八)内核层—Alarm定时唤醒与硬件唤醒源
android·电源管理·休眠唤醒
AFinalStone14 小时前
Android 7系统休眠唤醒(五)休眠全链路
android·电源管理·休眠唤醒