Android深色模式适配

1、开启深色模式:
①、继承 DayNight 主题背景

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

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

如:
values——color.xml 
    #ffffff
values-night——color.xml
    #000000


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

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

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


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

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

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

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

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

你可能感兴趣的:(View,android)