小编Mar*_*Ben的帖子

Dark theme android app

I'm trying to create a dark theme similar to the one in OxygenOS on OnePlus devices.

在此处输入图片说明

I changed the window background to black but the problem is the action bar is not becoming pure black.

<style name="DarkTheme" parent="Theme.AppCompact">
    <item name="android:colorPrimary">@color/black</item>
    <item name="android:colorPrimaryDark">@color/black</item>
    <item name="android:textColorPrimary">@color/white</item>
    <item name="android:colorAccent">@color/white</item>
    <item name="android:color">@color/white</item>
    <item name="android:windowBackground">@color/black</item>
    <item name="android:navigationBarColor">@color/black</item>
    <item name="android:actionBarStyle">@color/black</item>
</style>
Run Code Online (Sandbox Code Playgroud)

android themes android-theme

2
推荐指数
2
解决办法
1万
查看次数

标签 统计

android ×1

android-theme ×1

themes ×1