Explicitly disable force dark

This commit is contained in:
M66B
2021-03-27 12:11:58 +01:00
parent d87a1e6949
commit e28ddd4002
5 changed files with 6 additions and 2 deletions

View File

@@ -868,8 +868,8 @@ public class Helper {
static boolean isNight(Context context) {
// https://developer.android.com/guide/topics/ui/look-and-feel/darktheme#configuration_changes
int uiMode = context.getResources().getConfiguration().uiMode;
Log.i("UI mode=" + uiMode);
return ((uiMode & Configuration.UI_MODE_NIGHT_MASK) == Configuration.UI_MODE_NIGHT_YES);
Log.i("UI mode=" + Integer.toHexString(uiMode));
return ((uiMode & Configuration.UI_MODE_NIGHT_YES) != 0);
}
static boolean isDarkTheme(Context context) {