mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 09:53:33 +00:00
33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
|
|
package com.cappielloantonio.play.helper;
|
||
|
|
|
||
|
|
import android.os.Build;
|
||
|
|
|
||
|
|
import androidx.annotation.NonNull;
|
||
|
|
import androidx.appcompat.app.AppCompatDelegate;
|
||
|
|
|
||
|
|
public class ThemeHelper {
|
||
|
|
public static final String LIGHT_MODE = "light";
|
||
|
|
public static final String DARK_MODE = "dark";
|
||
|
|
public static final String DEFAULT_MODE = "default";
|
||
|
|
|
||
|
|
public static void applyTheme(@NonNull String themePref) {
|
||
|
|
switch (themePref) {
|
||
|
|
case LIGHT_MODE: {
|
||
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
case DARK_MODE: {
|
||
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
default: {
|
||
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM);
|
||
|
|
} else {
|
||
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_AUTO_BATTERY);
|
||
|
|
}
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|