如何在Android中更改状态栏的颜色文本?

时间:2020-05-02 15:17:01

标签: android

我想在Android Studio中更改操作栏的文本颜色: Colored bar

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

</resources>

1 个答案:

答案 0 :(得分:0)

如果要将状态栏设置为浅色主题颜色,则只需在styles.xml中添加以下行即可:

<item name="android:windowLightStatusBar">true</item>