From 7ecf0ba8407fee05c35981036ab139fbb3ff8cfc Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 13:24:20 +0000 Subject: [PATCH] fix flow Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 69 +++++++------------ 1 file changed, 24 insertions(+), 45 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java index 27cedb68b8..0527b235ab 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -70,33 +70,20 @@ public enum ThemeSwitcher { mRendererActive = isRendererActive; String storedTheme = Config.getThemeSettings(mContext); // follow-system etc - - int currentMapStyle = Framework.nativeGetMapStyle(); // Resolve dynamic themes (follow-system, nav-auto etc.) to light or dark - int resolvedTheme = getAndroidTheme(storedTheme); // Then derive map style from that, but handle debug commands // If current style is different to the style from theme, only set theme // to handle debug commands - if (currentMapStyle != getMapStyle(storedTheme)) - setMapStyle(getMapStyle(storedTheme)); - - setAndroidTheme(storedTheme); + setMapStyle(resolveMapStyle(storedTheme)); + setAndroidTheme(resolveCustomThemes(storedTheme)); } private void setAndroidTheme(@NonNull String theme) { + // custom-handled themes (auto and navauto) are converted + // to default or night before being passed here if (ThemeUtils.isSystemTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM); - else if (ThemeUtils.isAutoTheme(mContext, theme)) - { - //TODO: Proper behaviour - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); - } - else if (ThemeUtils.isNavAutoTheme(mContext, theme)) - { - //TODO: Proper behaviour - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); - } else if (ThemeUtils.isNightTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); else if (ThemeUtils.isDefaultTheme(mContext, theme)) @@ -117,13 +104,28 @@ public enum ThemeSwitcher Framework.nativeMarkMapStyle(style); } - private int getAndroidTheme(@NonNull String theme) + /** + * Convert custom themes (auto, navauto) to default ones (light, dark, follow-system) + * @return theme handle-able by android theme system. + */ + private String resolveCustomThemes(@NonNull String theme) { - //TODO: Dynamic themes processing here, or passthrough for normal ones - return R.string.theme_default; + if (ThemeUtils.isAutoTheme(mContext, theme)) + { + //TODO: Proper behaviour + return mContext.getResources().getString(R.string.theme_night); + } + else if (ThemeUtils.isNavAutoTheme(mContext, theme)) + { + //TODO: Proper behaviour + return mContext.getResources().getString(R.string.theme_night); + } + else + // Passthrough for normal themes + return theme; } - private int getMapStyle(@NonNull String theme) + private int resolveMapStyle(@NonNull String theme) { @Framework.MapStyle int style; @@ -148,27 +150,4 @@ public enum ThemeSwitcher return style; } - -// private void setThemeAndMapStyle(@NonNull String theme, @Framework.MapStyle int style) -// { -// String oldTheme = Config.getCurrentUiTheme(mContext); -// -// if (!theme.equals(oldTheme)) -// { -// Config.setCurrentUiTheme(mContext, theme); -// DownloaderStatusIcon.clearCache(); -// -// final Activity a = MwmApplication.from(mContext).getTopActivity(); -// if (a != null && !a.isFinishing()) -// a.recreate(); -// } -// else -// { -// // If the UI theme is not changed we just need to change the map style if needed. -// int currentStyle = Framework.nativeGetMapStyle(); -// if (currentStyle == style) -// return; -// SetMapStyle(style); -// } -// } -} +} \ No newline at end of file