Android深色模式适配

时间:2025-01-27 19:16:15

1、开启深色模式:
①、继承 DayNight 主题背景
<style name="BaseAppTheme" parent="">

②、MaterialComponent 的深色主题背景
<style name="BaseAppTheme" parent="">

③、Android 10 提供 Force Dark 功能(values-v29)

<resources>
    <style name="BaseAppTheme" parent="">
        <!-- 启用 Force Dark -->
        <item name="android:forceDarkAllowed">true</item>
    </style>
</resources>


<application
        android:theme="@style/BaseAppTheme">
</application>

2、资源文件适配(只要配置对应深色模式资源,当系统开启深色模式,会自动显示深色模式资源)

drawable       ——>   drawable-night
mimap-xxhdpi   ——>   mimap-night-xxhdpi
values         ——>   values-night

如:
values—— 
    <color name="text_white_color">#ffffff</color>
values-night——
    <color name="text_white_color">#000000</color>


3、Activity获取或者设置主题背景

设置主题背景
(AppCompatDelegate.MODE_NIGHT_YES);
获取主题背景
int defaultNightMode = ();

如果不希望主题背景发生更改时Activity重新创建(android:configChanges="uiMode")

<activity
    android:name=".MyActivity"
    android:configChanges="uiMode" />


当主题发生变化时候Activity onConfigurationChanged方法会被调用

@Override
public void onConfigurationChanged(@NonNull Configuration newConfig) {
    (newConfig);

    int currentNightMode =  & Configuration.UI_MODE_NIGHT_MASK;
    switch (currentNightMode) {
        case Configuration.UI_MODE_NIGHT_NO:
            // Night mode is not active, we're using the light theme
            (TAG, "onConfigurationChanged: light");

            break;
        case Configuration.UI_MODE_NIGHT_YES:
            // Night mode is active, we're using dark theme
            (TAG, "onConfigurationChanged: dark");
            break;
        default:
            break;
    }
}

一般app深色模式都是跟随系统的,所以只需要对资源文件进行适配即可