From d1b918c2634f970caa3082a6a6d7cdeb8e5791a6 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 25 Nov 2024 17:20:57 +0000 Subject: [PATCH 01/49] [android] rework Light, Dark, and System modes (rebased from PR, some additional minor cleanup/fixes) TODO: debug commands like ?light don't work. Signed-off-by: Harry Bond Signed-off-by: Sebastiao Sousa Co-authored-by: Francisco Nael Salgado --- android/app/src/main/AndroidManifest.xml | 28 +++-- .../java/app/organicmaps/SplashActivity.java | 10 ++ .../base/BaseMwmFragmentActivity.java | 10 ++ .../car/screens/settings/SettingsScreen.java | 2 +- .../car/screens/settings/ThemeScreen.java | 4 +- .../app/organicmaps/car/util/ThemeUtils.java | 18 +-- .../settings/SettingsPrefsFragment.java | 7 +- .../java/app/organicmaps/util/Config.java | 8 +- .../app/organicmaps/util/ThemeSwitcher.java | 116 +++++++++--------- .../java/app/organicmaps/util/ThemeUtils.java | 32 ++++- .../src/main/res/values/donottranslate.xml | 1 + .../app/src/main/res/values/string-arrays.xml | 16 +-- android/app/src/main/res/xml/prefs_main.xml | 52 ++++---- data/strings/strings.txt | 61 +++++++-- 14 files changed, 229 insertions(+), 136 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 86bdadc494..0a7e8fb475 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -343,10 +343,13 @@ + android:screenOrientation="fullUser"/> @@ -399,6 +402,7 @@ android:name="app.organicmaps.help.HelpActivity" android:label="@string/about_menu_title" android:parentActivityName="app.organicmaps.MwmActivity" + android:configChanges="uiMode" android:exported="false"> @@ -408,7 +412,7 @@ + android:name="app.organicmaps.MapPlaceholderActivity" + android:configChanges="uiMode" /> getScreenManager().push(new ThemeScreen(getCarContext(), getSurfaceRenderer()))); builder.setBrowsable(true); diff --git a/android/app/src/main/java/app/organicmaps/car/screens/settings/ThemeScreen.java b/android/app/src/main/java/app/organicmaps/car/screens/settings/ThemeScreen.java index 530a3259b5..f2a83959e8 100644 --- a/android/app/src/main/java/app/organicmaps/car/screens/settings/ThemeScreen.java +++ b/android/app/src/main/java/app/organicmaps/car/screens/settings/ThemeScreen.java @@ -47,7 +47,7 @@ public class ThemeScreen extends BaseMapScreen { final Header.Builder builder = new Header.Builder(); builder.setStartHeaderAction(Action.BACK); - builder.setTitle(getCarContext().getString(R.string.pref_map_style_title)); + builder.setTitle(getCarContext().getString(R.string.pref_appearance_title)); return builder.build(); } @@ -56,7 +56,7 @@ public class ThemeScreen extends BaseMapScreen { final ItemList.Builder builder = new ItemList.Builder(); final ThemeUtils.ThemeMode currentThemeMode = ThemeUtils.getThemeMode(getCarContext()); - builder.addItem(createRadioButton(ThemeUtils.ThemeMode.AUTO, currentThemeMode)); + builder.addItem(createRadioButton(ThemeUtils.ThemeMode.FOLLOW_SYSTEM, currentThemeMode)); builder.addItem(createRadioButton(ThemeUtils.ThemeMode.NIGHT, currentThemeMode)); builder.addItem(createRadioButton(ThemeUtils.ThemeMode.LIGHT, currentThemeMode)); return new ListTemplate.Builder().setHeader(createHeader()).setSingleList(builder.build()).build(); diff --git a/android/app/src/main/java/app/organicmaps/car/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/car/util/ThemeUtils.java index cb6806cfd5..f38dc77add 100644 --- a/android/app/src/main/java/app/organicmaps/car/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/car/util/ThemeUtils.java @@ -17,9 +17,9 @@ public final class ThemeUtils { public enum ThemeMode { - AUTO(R.string.auto, R.string.theme_auto), - LIGHT(R.string.off, R.string.theme_default), - NIGHT(R.string.on, R.string.theme_night); + LIGHT(R.string.light, R.string.theme_default), + NIGHT(R.string.dark, R.string.theme_night), + FOLLOW_SYSTEM(R.string.follow_system, R.string.theme_follow_system); ThemeMode(@StringRes int titleId, @StringRes int prefsKeyId) { @@ -58,7 +58,7 @@ public final class ThemeUtils @UiThread public static void update(@NonNull CarContext context, @NonNull ThemeMode oldThemeMode) { - final ThemeMode newThemeMode = oldThemeMode == ThemeMode.AUTO ? (context.isDarkMode() ? ThemeMode.NIGHT : ThemeMode.LIGHT) : oldThemeMode; + final ThemeMode newThemeMode = oldThemeMode == ThemeMode.FOLLOW_SYSTEM ? (context.isDarkMode() ? ThemeMode.NIGHT : ThemeMode.LIGHT) : oldThemeMode; @Framework.MapStyle int newMapStyle; @@ -74,7 +74,7 @@ public final class ThemeUtils public static boolean isNightMode(@NonNull CarContext context) { final ThemeMode themeMode = getThemeMode(context); - return themeMode == ThemeMode.NIGHT || (themeMode == ThemeMode.AUTO && context.isDarkMode()); + return themeMode == ThemeMode.NIGHT || (themeMode == ThemeMode.FOLLOW_SYSTEM && context.isDarkMode()); } @SuppressLint("ApplySharedPref") @@ -88,13 +88,13 @@ public final class ThemeUtils @NonNull public static ThemeMode getThemeMode(@NonNull CarContext context) { - final String autoTheme = context.getString(R.string.theme_auto); + final String followSystemTheme = context.getString(R.string.theme_follow_system); final String lightTheme = context.getString(R.string.theme_default); final String nightTheme = context.getString(R.string.theme_night); - final String themeMode = getSharedPreferences(context).getString(THEME_KEY, autoTheme); + final String themeMode = getSharedPreferences(context).getString(THEME_KEY, followSystemTheme); - if (themeMode.equals(autoTheme)) - return ThemeMode.AUTO; + if (themeMode.equals(followSystemTheme)) + return ThemeMode.FOLLOW_SYSTEM; else if (themeMode.equals(lightTheme)) return ThemeMode.LIGHT; else if (themeMode.equals(nightTheme)) diff --git a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java index b7d8e35f69..2597c3fd4c 100644 --- a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java +++ b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java @@ -507,10 +507,9 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La enum ThemeMode { + FOLLOW_SYSTEM(R.string.theme_follow_system), DEFAULT(R.string.theme_default), - NIGHT(R.string.theme_night), - AUTO(R.string.theme_auto), - NAV_AUTO(R.string.theme_nav_auto); + NIGHT(R.string.theme_night); private final int mModeStringId; @@ -527,7 +526,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La if (context.getResources().getString(each.mModeStringId).equals(src)) return each; } - return AUTO; + return FOLLOW_SYSTEM; } } diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index 2f9cdbf882..55670340d9 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -275,12 +275,12 @@ public final class Config @NonNull public static String getUiThemeSettings(@NonNull Context context) { - String autoTheme = MwmApplication.from(context).getString(R.string.theme_auto); - String res = getString(KEY_MISC_UI_THEME_SETTINGS, autoTheme); - if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isAutoTheme(context, res) || ThemeUtils.isNavAutoTheme(context, res)) + String followSystemTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); + String res = getString(KEY_MISC_UI_THEME_SETTINGS, followSystemTheme); + if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isFollowSystemTheme(context, res)) return res; - return autoTheme; + return followSystemTheme; } public static boolean setUiThemeSettings(@NonNull Context context, String theme) 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 d70055b0f9..b1bdc24177 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -1,21 +1,15 @@ package app.organicmaps.util; import android.app.Activity; -import android.app.UiModeManager; import android.content.Context; -import android.location.Location; -import android.os.Build; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatDelegate; import app.organicmaps.Framework; import app.organicmaps.MwmApplication; -import app.organicmaps.R; import app.organicmaps.display.DisplayManager; import app.organicmaps.downloader.DownloaderStatusIcon; -import app.organicmaps.location.LocationHelper; import app.organicmaps.routing.RoutingController; -import app.organicmaps.util.concurrency.UiThread; public enum ThemeSwitcher { @@ -24,37 +18,37 @@ public enum ThemeSwitcher private static final long CHECK_INTERVAL_MS = 30 * 60 * 1000; private static boolean mRendererActive = false; - private final Runnable mAutoThemeChecker = new Runnable() - { - @Override - public void run() - { - String nightTheme = MwmApplication.from(mContext).getString(R.string.theme_night); - String defaultTheme = MwmApplication.from(mContext).getString(R.string.theme_default); - String theme = defaultTheme; - Location last = LocationHelper.from(mContext).getSavedLocation(); - - boolean navAuto = RoutingController.get().isNavigating() && ThemeUtils.isNavAutoTheme(mContext); - - if (navAuto || ThemeUtils.isAutoTheme(mContext)) - { - if (last == null) - theme = Config.getCurrentUiTheme(mContext); - else - { - long currentTime = System.currentTimeMillis() / 1000; - boolean day = Framework.nativeIsDayTime(currentTime, last.getLatitude(), last.getLongitude()); - theme = (day ? defaultTheme : nightTheme); - } - } - - setThemeAndMapStyle(theme); - UiThread.cancelDelayedTasks(mAutoThemeChecker); - - if (navAuto || ThemeUtils.isAutoTheme(mContext)) - UiThread.runLater(mAutoThemeChecker, CHECK_INTERVAL_MS); - } - }; +// private final Runnable mAutoThemeChecker = new Runnable() +// { +// @Override +// public void run() +// { +// String nightTheme = MwmApplication.from(mContext).getString(R.string.theme_night); +// String defaultTheme = MwmApplication.from(mContext).getString(R.string.theme_default); +// String theme = defaultTheme; +// Location last = LocationHelper.from(mContext).getSavedLocation(); +// +// boolean navAuto = RoutingController.get().isNavigating() && ThemeUtils.isNavAutoTheme(mContext); +// +// if (navAuto || ThemeUtils.isAutoTheme(mContext)) +// { +// if (last == null) +// theme = Config.getCurrentUiTheme(mContext); +// else +// { +// long currentTime = System.currentTimeMillis() / 1000; +// boolean day = Framework.nativeIsDayTime(currentTime, last.getLatitude(), last.getLongitude()); +// theme = (day ? defaultTheme : nightTheme); +// } +// } +// +// setThemeAndMapStyle(theme); +// UiThread.cancelDelayedTasks(mAutoThemeChecker); +// +// if (navAuto || ThemeUtils.isAutoTheme(mContext)) +// UiThread.runLater(mAutoThemeChecker, CHECK_INTERVAL_MS); +// } +// }; @SuppressWarnings("NotNullFieldNotInitialized") @NonNull @@ -79,32 +73,34 @@ public enum ThemeSwitcher { mRendererActive = isRendererActive; String theme = Config.getUiThemeSettings(mContext); - if (ThemeUtils.isAutoTheme(mContext, theme) || ThemeUtils.isNavAutoTheme(mContext, theme)) - { - mAutoThemeChecker.run(); - return; - } +// if (ThemeUtils.isAutoTheme(mContext, theme) || ThemeUtils.isNavAutoTheme(mContext, theme)) +// { +// mAutoThemeChecker.run(); +// return; +// } + setAndroidTheme(theme); - UiThread.cancelDelayedTasks(mAutoThemeChecker); - setThemeAndMapStyle(theme); + final String themeToApply = ThemeUtils.getAndroidTheme(mContext); + final int style = getStyle(themeToApply); + setThemeAndMapStyle(themeToApply, style); } - private void setThemeAndMapStyle(@NonNull String theme) + private void setAndroidTheme(@NonNull String theme) { - UiModeManager uiModeManager = (UiModeManager) mContext.getSystemService(Context.UI_MODE_SERVICE); - String oldTheme = Config.getCurrentUiTheme(mContext); - @Framework.MapStyle - int oldStyle = Framework.nativeGetMapStyle(); + if (ThemeUtils.isFollowSystemTheme(mContext, theme)) + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM); + else if (ThemeUtils.isNightTheme(mContext, theme)) + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); + else if (ThemeUtils.isDefaultTheme(mContext, theme)) + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); + } + private int getStyle(@NonNull String theme) + { @Framework.MapStyle int style; if (ThemeUtils.isNightTheme(mContext, theme)) { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) - uiModeManager.setApplicationNightMode(UiModeManager.MODE_NIGHT_YES); - else - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); - if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_DARK; else if (Framework.nativeIsOutdoorsLayerEnabled()) @@ -114,11 +110,6 @@ public enum ThemeSwitcher } else { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) - uiModeManager.setApplicationNightMode(UiModeManager.MODE_NIGHT_NO); - else - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); - if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_CLEAR; else if (Framework.nativeIsOutdoorsLayerEnabled()) @@ -127,6 +118,13 @@ public enum ThemeSwitcher style = Framework.MAP_STYLE_CLEAR; } + 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); diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index c121c8d313..b3613e7cab 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -1,6 +1,7 @@ package app.organicmaps.util; import android.content.Context; +import android.content.res.Configuration; import android.content.res.TypedArray; import android.util.TypedValue; @@ -8,7 +9,7 @@ import androidx.annotation.AttrRes; import androidx.annotation.ColorInt; import androidx.annotation.NonNull; import androidx.annotation.StyleRes; - +import androidx.appcompat.app.AppCompatDelegate; import app.organicmaps.R; public final class ThemeUtils @@ -45,6 +46,25 @@ public final class ThemeUtils return VALUE_BUFFER.resourceId; } + public static String getAndroidTheme(@NonNull Context context) + { + String nightTheme = context.getString(R.string.theme_night); + String defaultTheme = context.getString(R.string.theme_default); + + if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) + return nightTheme; + + if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_NO) + return defaultTheme; + + int nightModeFlags = context.getResources() + .getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; + if (nightModeFlags == Configuration.UI_MODE_NIGHT_YES) + return nightTheme; + else + return defaultTheme; + } + public static boolean isDefaultTheme(@NonNull Context context) { return isDefaultTheme(context, Config.getCurrentUiTheme(context)); @@ -67,15 +87,15 @@ public final class ThemeUtils return nightTheme.equals(theme); } - public static boolean isAutoTheme(@NonNull Context context) + public static boolean isFollowSystemTheme(@NonNull Context context) { - return isAutoTheme(context, Config.getUiThemeSettings(context)); + return isFollowSystemTheme(context, Config.getCurrentUiTheme(context)); } - public static boolean isAutoTheme(@NonNull Context context, String theme) + public static boolean isFollowSystemTheme(@NonNull Context context, String theme) { - String autoTheme = context.getString(R.string.theme_auto); - return autoTheme.equals(theme); + String followSystemTheme = context.getString(R.string.theme_follow_system); + return followSystemTheme.equals(theme); } public static boolean isNavAutoTheme(@NonNull Context context) diff --git a/android/app/src/main/res/values/donottranslate.xml b/android/app/src/main/res/values/donottranslate.xml index 976c1ecd7c..79c9be7f89 100644 --- a/android/app/src/main/res/values/donottranslate.xml +++ b/android/app/src/main/res/values/donottranslate.xml @@ -53,6 +53,7 @@ night auto nav-auto + follow-system collapse diff --git a/android/app/src/main/res/values/string-arrays.xml b/android/app/src/main/res/values/string-arrays.xml index ee0e6210fd..a5e7c4fd81 100644 --- a/android/app/src/main/res/values/string-arrays.xml +++ b/android/app/src/main/res/values/string-arrays.xml @@ -23,20 +23,16 @@ 0 1 - - - @string/off - @string/on - @string/auto - @string/nav_auto + + @string/follow_system + @string/light + @string/dark - - + @string/theme_follow_system @string/theme_default @string/theme_night - @string/theme_auto - @string/theme_nav_auto diff --git a/android/app/src/main/res/xml/prefs_main.xml b/android/app/src/main/res/xml/prefs_main.xml index e162e025d6..6f278ca16c 100644 --- a/android/app/src/main/res/xml/prefs_main.xml +++ b/android/app/src/main/res/xml/prefs_main.xml @@ -14,6 +14,13 @@ android:key="@string/pref_settings_general" android:title="@string/prefs_group_general" android:order="2"> + + android:order="2"/> + android:order="3"/> + android:order="4"/> + android:order="5"/> + android:order="9"/> + android:order="10"/> + android:order="11"/> + android:order="12"/> + android:order="13"/> + android:order="14"/> + android:key="@string/pref_map_locale" + android:title="@string/change_map_locale" + app:singleLineTitle="false" + android:persistent="false" + android:order="15"/> - + android:order="1" /> + android:order="2" /> + android:order="3"> Date: Sun, 15 Dec 2024 17:38:03 +0000 Subject: [PATCH 02/49] dfrg --- .../main/java/app/organicmaps/util/ThemeSwitcher.java | 7 +------ android/app/src/main/res/values/string-arrays.xml | 9 +++++++-- android/app/src/main/res/values/strings.xml | 8 ++++++++ 3 files changed, 16 insertions(+), 8 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 b1bdc24177..997134beb7 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -15,7 +15,6 @@ public enum ThemeSwitcher { INSTANCE; - private static final long CHECK_INTERVAL_MS = 30 * 60 * 1000; private static boolean mRendererActive = false; // private final Runnable mAutoThemeChecker = new Runnable() @@ -73,11 +72,7 @@ public enum ThemeSwitcher { mRendererActive = isRendererActive; String theme = Config.getUiThemeSettings(mContext); -// if (ThemeUtils.isAutoTheme(mContext, theme) || ThemeUtils.isNavAutoTheme(mContext, theme)) -// { -// mAutoThemeChecker.run(); -// return; -// } + setAndroidTheme(theme); final String themeToApply = ThemeUtils.getAndroidTheme(mContext); diff --git a/android/app/src/main/res/values/string-arrays.xml b/android/app/src/main/res/values/string-arrays.xml index a5e7c4fd81..1a1b7fdca7 100644 --- a/android/app/src/main/res/values/string-arrays.xml +++ b/android/app/src/main/res/values/string-arrays.xml @@ -23,14 +23,19 @@ 0 1 + @string/follow_system + @string/nav_auto + @string/auto @string/light @string/dark - + + @string/theme_follow_system + @string/theme_nav_auto + @string/theme_auto @string/theme_default @string/theme_night diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index c6058a9554..4921bd8dd9 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -235,6 +235,14 @@ Display on the map Night Mode + + Appearance + + Light + + Dark + + Follow System Off -- 2.45.3 From 2383c021b9bb26ea5ca690baf4e2c6ece8da202e Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 15 Dec 2024 18:50:20 +0000 Subject: [PATCH 03/49] check --- .../main/java/app/organicmaps/util/Config.java | 3 ++- .../java/app/organicmaps/util/ThemeUtils.java | 18 +++++++++++++++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index 55670340d9..6d8eb90a35 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -2,6 +2,7 @@ package app.organicmaps.util; import android.content.Context; import android.content.SharedPreferences; +import android.content.res.Resources; import android.os.Build; import androidx.annotation.NonNull; @@ -277,7 +278,7 @@ public final class Config { String followSystemTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); String res = getString(KEY_MISC_UI_THEME_SETTINGS, followSystemTheme); - if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isFollowSystemTheme(context, res)) + if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isValidThemeMode(context, res)) return res; return followSystemTheme; diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index b3613e7cab..06cede0982 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -107,7 +107,23 @@ public final class ThemeUtils { String navAutoTheme = context.getString(R.string.theme_nav_auto); return navAutoTheme.equals(theme); -} + } + + public static boolean isAutoTheme(@NonNull Context context) + { + return isFollowSystemTheme(context, Config.getCurrentUiTheme(context)); + } + + public static boolean isAutoTheme(@NonNull Context context, String theme) + { + String followSystemTheme = context.getString(R.string.theme_auto); + return followSystemTheme.equals(theme); + } + + public static boolean isValidThemeMode(@NonNull Context context, String res) + { + return isFollowSystemTheme(context, res) || isNavAutoTheme(context, res) || isAutoTheme(context, res); + } public static boolean isValidTheme(@NonNull Context context, String theme) { -- 2.45.3 From 54c8a4c8ed49d6f5081ea90af74bb7f40275d7db Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 15 Dec 2024 19:39:45 +0000 Subject: [PATCH 04/49] cvbg --- android/app/src/main/java/app/organicmaps/util/Config.java | 7 ++++--- .../src/main/java/app/organicmaps/util/ThemeSwitcher.java | 6 +++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index 6d8eb90a35..dc2ab12919 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -276,12 +276,13 @@ public final class Config @NonNull public static String getUiThemeSettings(@NonNull Context context) { - String followSystemTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); - String res = getString(KEY_MISC_UI_THEME_SETTINGS, followSystemTheme); + // Fallback & default theme + String fallbackTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); + String res = getString(KEY_MISC_UI_THEME_SETTINGS, fallbackTheme); if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isValidThemeMode(context, res)) return res; - return followSystemTheme; + return fallbackTheme; } public static boolean setUiThemeSettings(@NonNull Context context, String theme) 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 997134beb7..fb6d2fe968 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -84,6 +84,10 @@ public enum ThemeSwitcher { if (ThemeUtils.isFollowSystemTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM); + else if (ThemeUtils.isAutoTheme(mContext, theme)) //TODO: Proper behaviour + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); + else if (ThemeUtils.isNavAutoTheme(mContext, theme)) //TODO: Proper behaviour + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); else if (ThemeUtils.isNightTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); else if (ThemeUtils.isDefaultTheme(mContext, theme)) @@ -103,7 +107,7 @@ public enum ThemeSwitcher else style = Framework.MAP_STYLE_DARK; } - else + else//TODO: and here? { if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_CLEAR; -- 2.45.3 From 6b0c05bdc898b4c6d5549abfd71a3cf0a9477cf6 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 16 Dec 2024 19:54:35 +0000 Subject: [PATCH 05/49] fgdgfg --- .../app/organicmaps/util/ThemeSwitcher.java | 56 +++++++++---------- .../java/app/organicmaps/util/ThemeUtils.java | 2 +- 2 files changed, 28 insertions(+), 30 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 fb6d2fe968..48556108cc 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -1,14 +1,11 @@ package app.organicmaps.util; -import android.app.Activity; import android.content.Context; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatDelegate; import app.organicmaps.Framework; -import app.organicmaps.MwmApplication; import app.organicmaps.display.DisplayManager; -import app.organicmaps.downloader.DownloaderStatusIcon; import app.organicmaps.routing.RoutingController; public enum ThemeSwitcher @@ -71,13 +68,14 @@ public enum ThemeSwitcher public void restart(boolean isRendererActive) { mRendererActive = isRendererActive; + // First, set the last saved theme String theme = Config.getUiThemeSettings(mContext); - + int currentStyle = Framework.nativeGetMapStyle(); setAndroidTheme(theme); - final String themeToApply = ThemeUtils.getAndroidTheme(mContext); - final int style = getStyle(themeToApply); - setThemeAndMapStyle(themeToApply, style); + final String themeToApply = ThemeUtils.getUiTheme(mContext); + // final int style = getStyle(theme); + // setThemeAndMapStyle(theme, style); } private void setAndroidTheme(@NonNull String theme) @@ -120,28 +118,28 @@ 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); - } - } +// 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); +// } +// } private void SetMapStyle(@Framework.MapStyle int style) { diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index 06cede0982..39ce84e39f 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -46,7 +46,7 @@ public final class ThemeUtils return VALUE_BUFFER.resourceId; } - public static String getAndroidTheme(@NonNull Context context) + public static String getUiTheme(@NonNull Context context) { String nightTheme = context.getString(R.string.theme_night); String defaultTheme = context.getString(R.string.theme_default); -- 2.45.3 From ce9822f950a0eb490aa488fa0b0c2eea2a09225a Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 16 Dec 2024 21:58:31 +0000 Subject: [PATCH 06/49] srfdtghjhfgh --- .../src/main/java/app/organicmaps/Map.java | 4 +- .../java/app/organicmaps/SplashActivity.java | 2 +- .../base/BaseMwmFragmentActivity.java | 4 +- .../java/app/organicmaps/util/Config.java | 48 +++++++++---------- .../app/organicmaps/util/ThemeSwitcher.java | 29 +++++++---- .../java/app/organicmaps/util/ThemeUtils.java | 44 ++++++++--------- 6 files changed, 71 insertions(+), 60 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/Map.java b/android/app/src/main/java/app/organicmaps/Map.java index 96d4da0288..03d8a99b7d 100644 --- a/android/app/src/main/java/app/organicmaps/Map.java +++ b/android/app/src/main/java/app/organicmaps/Map.java @@ -253,7 +253,7 @@ public final class Map public void onPause(final Context context) { - mUiThemeOnPause = Config.getCurrentUiTheme(context); + mUiThemeOnPause = Config.getUiThemeSettings(context); // Pause/Resume can be called without surface creation/destroy. if (mSurfaceAttached) @@ -363,7 +363,7 @@ public final class Map private boolean isThemeChangingProcess(final Context context) { - return mUiThemeOnPause != null && !mUiThemeOnPause.equals(Config.getCurrentUiTheme(context)); + return mUiThemeOnPause != null && !mUiThemeOnPause.equals(Config.getUiThemeSettings(context)); } // Engine diff --git a/android/app/src/main/java/app/organicmaps/SplashActivity.java b/android/app/src/main/java/app/organicmaps/SplashActivity.java index 27f1c635ba..ca2efa2dab 100644 --- a/android/app/src/main/java/app/organicmaps/SplashActivity.java +++ b/android/app/src/main/java/app/organicmaps/SplashActivity.java @@ -62,7 +62,7 @@ public class SplashActivity extends AppCompatActivity super.onCreate(savedInstanceState); final Context context = getApplicationContext(); - final String theme = Config.getCurrentUiTheme(context); + final String theme = Config.getUiThemeSettings(context); if (ThemeUtils.isDefaultTheme(context, theme)) setTheme(R.style.MwmTheme_Splash); else if (ThemeUtils.isNightTheme(context, theme)) diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java index b5a1f31bd0..2fb1d6cde7 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java @@ -67,7 +67,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity protected final void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); - mThemeName = Config.getCurrentUiTheme(getApplicationContext()); + mThemeName = Config.getUiThemeSettings(getApplicationContext()); setTheme(getThemeResourceId(mThemeName)); EdgeToEdge.enable(this, SystemBarStyle.dark(Color.TRANSPARENT)); RtlUtils.manageRtl(this); @@ -127,7 +127,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity public void onPostResume() { super.onPostResume(); - if (!mThemeName.equals(Config.getCurrentUiTheme(getApplicationContext()))) + if (!mThemeName.equals(Config.getUiThemeSettings(getApplicationContext()))) { // Workaround described in https://code.google.com/p/android/issues/detail?id=93731 UiThread.runLater(this::recreate); diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index dc2ab12919..b2c021fc03 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -25,7 +25,6 @@ public final class Config private static final String KEY_MISC_KAYAK_ACCEPTED = "IsKayakApproved"; private static final String KEY_MISC_LOCATION_REQUESTED = "LocationRequested"; private static final String KEY_MISC_UI_THEME = "UiTheme"; - private static final String KEY_MISC_UI_THEME_SETTINGS = "UiThemeSettings"; private static final String KEY_MISC_USE_MOBILE_DATA = "UseMobileData"; private static final String KEY_MISC_USE_MOBILE_DATA_TIMESTAMP = "UseMobileDataTimestamp"; private static final String KEY_MISC_USE_MOBILE_DATA_ROAMING = "UseMobileDataRoaming"; @@ -254,7 +253,7 @@ public final class Config } @NonNull - public static String getCurrentUiTheme(@NonNull Context context) + public static String getUiThemeSettings(@NonNull Context context) { String defaultTheme = MwmApplication.from(context).getString(R.string.theme_default); String res = getString(KEY_MISC_UI_THEME, defaultTheme); @@ -265,35 +264,36 @@ public final class Config return defaultTheme; } - static void setCurrentUiTheme(@NonNull Context context, @NonNull String theme) - { - if (getCurrentUiTheme(context).equals(theme)) - return; - - setString(KEY_MISC_UI_THEME, theme); - } - - @NonNull - public static String getUiThemeSettings(@NonNull Context context) - { - // Fallback & default theme - String fallbackTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); - String res = getString(KEY_MISC_UI_THEME_SETTINGS, fallbackTheme); - if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isValidThemeMode(context, res)) - return res; - - return fallbackTheme; - } - - public static boolean setUiThemeSettings(@NonNull Context context, String theme) + public static boolean setUiThemeSettings(@NonNull Context context, @NonNull String theme) { if (getUiThemeSettings(context).equals(theme)) return false; - setString(KEY_MISC_UI_THEME_SETTINGS, theme); + setString(KEY_MISC_UI_THEME, theme); return true; } +// @NonNull +// public static String getUiThemeSettings(@NonNull Context context) +// { +// // Fallback & default theme +// String fallbackTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); +// String res = getString(KEY_MISC_UI_THEME_SETTINGS, fallbackTheme); +// if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isValidThemeMode(context, res)) +// return res; +// +// return fallbackTheme; +// } +// +// public static boolean setUiThemeSettings(@NonNull Context context, String theme) +// { +// if (getUiThemeSettings(context).equals(theme)) +// return false; +// +// setString(KEY_MISC_UI_THEME_SETTINGS, theme); +// return true; +// } + public static boolean isLargeFontsSize() { return nativeGetLargeFontsSize(); 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 48556108cc..880c6d0082 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -69,12 +69,23 @@ public enum ThemeSwitcher { mRendererActive = isRendererActive; // First, set the last saved theme - String theme = Config.getUiThemeSettings(mContext); - int currentStyle = Framework.nativeGetMapStyle(); - setAndroidTheme(theme); + String storedTheme = Config.getUiThemeSettings(mContext); + Config.setUiThemeSettings(mContext, storedTheme); + int currentMapStyle = Framework.nativeGetMapStyle(); + // If current style is different to the style from theme, only set theme + // To handle case of debug commands + if (currentMapStyle != getMapStyle(storedTheme)) + { + SetMapStyle(getMapStyle(storedTheme)); + setAndroidTheme(storedTheme); + } + else + { + setAndroidTheme(storedTheme); + } - final String themeToApply = ThemeUtils.getUiTheme(mContext); - // final int style = getStyle(theme); + // final String themeToApply = ThemeUtils.getUiTheme(mContext); + // final int style = ; // setThemeAndMapStyle(theme, style); } @@ -83,16 +94,16 @@ public enum ThemeSwitcher if (ThemeUtils.isFollowSystemTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM); else if (ThemeUtils.isAutoTheme(mContext, theme)) //TODO: Proper behaviour - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); else if (ThemeUtils.isNavAutoTheme(mContext, theme)) //TODO: Proper behaviour - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); + AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); else if (ThemeUtils.isNightTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); else if (ThemeUtils.isDefaultTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); } - private int getStyle(@NonNull String theme) + private int getMapStyle(@NonNull String theme) { @Framework.MapStyle int style; @@ -105,7 +116,7 @@ public enum ThemeSwitcher else style = Framework.MAP_STYLE_DARK; } - else//TODO: and here? + else { if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_CLEAR; diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index 39ce84e39f..fbd3f7afe2 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -46,28 +46,28 @@ public final class ThemeUtils return VALUE_BUFFER.resourceId; } - public static String getUiTheme(@NonNull Context context) - { - String nightTheme = context.getString(R.string.theme_night); - String defaultTheme = context.getString(R.string.theme_default); - - if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) - return nightTheme; - - if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_NO) - return defaultTheme; - - int nightModeFlags = context.getResources() - .getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; - if (nightModeFlags == Configuration.UI_MODE_NIGHT_YES) - return nightTheme; - else - return defaultTheme; - } +// public static String getUiTheme(@NonNull Context context) +// { +// String nightTheme = context.getString(R.string.theme_night); +// String defaultTheme = context.getString(R.string.theme_default); +// +// if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) +// return nightTheme; +// +// if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_NO) +// return defaultTheme; +// +// int nightModeFlags = context.getResources() +// .getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; +// if (nightModeFlags == Configuration.UI_MODE_NIGHT_YES) +// return nightTheme; +// else +// return defaultTheme; +// } public static boolean isDefaultTheme(@NonNull Context context) { - return isDefaultTheme(context, Config.getCurrentUiTheme(context)); + return isDefaultTheme(context, Config.getUiThemeSettings(context)); } public static boolean isDefaultTheme(@NonNull Context context, String theme) @@ -78,7 +78,7 @@ public final class ThemeUtils public static boolean isNightTheme(@NonNull Context context) { - return isNightTheme(context, Config.getCurrentUiTheme(context)); + return isNightTheme(context, Config.getUiThemeSettings(context)); } public static boolean isNightTheme(@NonNull Context context, String theme) @@ -89,7 +89,7 @@ public final class ThemeUtils public static boolean isFollowSystemTheme(@NonNull Context context) { - return isFollowSystemTheme(context, Config.getCurrentUiTheme(context)); + return isFollowSystemTheme(context, Config.getUiThemeSettings(context)); } public static boolean isFollowSystemTheme(@NonNull Context context, String theme) @@ -111,7 +111,7 @@ public final class ThemeUtils public static boolean isAutoTheme(@NonNull Context context) { - return isFollowSystemTheme(context, Config.getCurrentUiTheme(context)); + return isFollowSystemTheme(context, Config.getUiThemeSettings(context)); } public static boolean isAutoTheme(@NonNull Context context, String theme) -- 2.45.3 From bfad3195adc858c71d8e80e1286404dbe901f9d9 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 16 Dec 2024 22:15:21 +0000 Subject: [PATCH 07/49] dfdfg --- .../java/app/organicmaps/util/Config.java | 31 +++---------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index b2c021fc03..23ac69d341 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -255,13 +255,13 @@ public final class Config @NonNull public static String getUiThemeSettings(@NonNull Context context) { - String defaultTheme = MwmApplication.from(context).getString(R.string.theme_default); - String res = getString(KEY_MISC_UI_THEME, defaultTheme); - - if (ThemeUtils.isValidTheme(context, res)) + // Fallback & default theme + String fallbackTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); + String res = getString(KEY_MISC_UI_THEME, fallbackTheme); + if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isValidThemeMode(context, res)) return res; - return defaultTheme; + return fallbackTheme; } public static boolean setUiThemeSettings(@NonNull Context context, @NonNull String theme) @@ -273,27 +273,6 @@ public final class Config return true; } -// @NonNull -// public static String getUiThemeSettings(@NonNull Context context) -// { -// // Fallback & default theme -// String fallbackTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); -// String res = getString(KEY_MISC_UI_THEME_SETTINGS, fallbackTheme); -// if (ThemeUtils.isValidTheme(context, res) || ThemeUtils.isValidThemeMode(context, res)) -// return res; -// -// return fallbackTheme; -// } -// -// public static boolean setUiThemeSettings(@NonNull Context context, String theme) -// { -// if (getUiThemeSettings(context).equals(theme)) -// return false; -// -// setString(KEY_MISC_UI_THEME_SETTINGS, theme); -// return true; -// } - public static boolean isLargeFontsSize() { return nativeGetLargeFontsSize(); -- 2.45.3 From d005ee6149119032bd8c1058a27946c8ad812d91 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 16 Dec 2024 23:33:59 +0000 Subject: [PATCH 08/49] sfdsdfsd --- .../app/organicmaps/util/ThemeSwitcher.java | 41 +++++++++---------- .../java/app/organicmaps/util/ThemeUtils.java | 13 +++--- 2 files changed, 26 insertions(+), 28 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 880c6d0082..7f4603730d 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -68,35 +68,31 @@ public enum ThemeSwitcher public void restart(boolean isRendererActive) { mRendererActive = isRendererActive; - // First, set the last saved theme String storedTheme = Config.getUiThemeSettings(mContext); - Config.setUiThemeSettings(mContext, storedTheme); int currentMapStyle = Framework.nativeGetMapStyle(); - // If current style is different to the style from theme, only set theme - // To handle case of debug commands - if (currentMapStyle != getMapStyle(storedTheme)) - { - SetMapStyle(getMapStyle(storedTheme)); - setAndroidTheme(storedTheme); - } - else - { - setAndroidTheme(storedTheme); - } - // final String themeToApply = ThemeUtils.getUiTheme(mContext); - // final int style = ; - // setThemeAndMapStyle(theme, style); + // 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); } private void setAndroidTheme(@NonNull String theme) { - if (ThemeUtils.isFollowSystemTheme(mContext, theme)) + 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.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)) @@ -152,6 +148,9 @@ public enum ThemeSwitcher // } // } + /** + * calls back to core framework and sets the map style. + */ private void SetMapStyle(@Framework.MapStyle int style) { // Because of the distinct behavior in auto theme, Android Auto employs its own mechanism for theme switching. diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index fbd3f7afe2..8d66691289 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -1,7 +1,6 @@ package app.organicmaps.util; import android.content.Context; -import android.content.res.Configuration; import android.content.res.TypedArray; import android.util.TypedValue; @@ -9,7 +8,7 @@ import androidx.annotation.AttrRes; import androidx.annotation.ColorInt; import androidx.annotation.NonNull; import androidx.annotation.StyleRes; -import androidx.appcompat.app.AppCompatDelegate; + import app.organicmaps.R; public final class ThemeUtils @@ -87,12 +86,12 @@ public final class ThemeUtils return nightTheme.equals(theme); } - public static boolean isFollowSystemTheme(@NonNull Context context) + public static boolean isSystemTheme(@NonNull Context context) { - return isFollowSystemTheme(context, Config.getUiThemeSettings(context)); + return isSystemTheme(context, Config.getUiThemeSettings(context)); } - public static boolean isFollowSystemTheme(@NonNull Context context, String theme) + public static boolean isSystemTheme(@NonNull Context context, String theme) { String followSystemTheme = context.getString(R.string.theme_follow_system); return followSystemTheme.equals(theme); @@ -111,7 +110,7 @@ public final class ThemeUtils public static boolean isAutoTheme(@NonNull Context context) { - return isFollowSystemTheme(context, Config.getUiThemeSettings(context)); + return isSystemTheme(context, Config.getUiThemeSettings(context)); } public static boolean isAutoTheme(@NonNull Context context, String theme) @@ -122,7 +121,7 @@ public final class ThemeUtils public static boolean isValidThemeMode(@NonNull Context context, String res) { - return isFollowSystemTheme(context, res) || isNavAutoTheme(context, res) || isAutoTheme(context, res); + return isSystemTheme(context, res) || isNavAutoTheme(context, res) || isAutoTheme(context, res); } public static boolean isValidTheme(@NonNull Context context, String theme) -- 2.45.3 From 57624499865418c331385b601fd6bd51a53c5d18 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Tue, 17 Dec 2024 00:09:41 +0000 Subject: [PATCH 09/49] eggdfgdgf --- .../app/organicmaps/util/ThemeSwitcher.java | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 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 7f4603730d..03eef31636 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -5,6 +5,7 @@ import android.content.Context; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatDelegate; import app.organicmaps.Framework; +import app.organicmaps.R; import app.organicmaps.display.DisplayManager; import app.organicmaps.routing.RoutingController; @@ -71,10 +72,13 @@ public enum ThemeSwitcher String storedTheme = Config.getUiThemeSettings(mContext); int currentMapStyle = Framework.nativeGetMapStyle(); + // Resolve dynamic themes (follow-system, nav-auto etc.) + int resolvedTheme = resolveTheme(storedTheme); + // If current style is different to the style from theme, only set theme // to handle debug commands if (currentMapStyle != getMapStyle(storedTheme)) - SetMapStyle(getMapStyle(storedTheme)); + setMapStyle(getMapStyle(storedTheme)); setAndroidTheme(storedTheme); } @@ -148,10 +152,7 @@ public enum ThemeSwitcher // } // } - /** - * calls back to core framework and sets the map style. - */ - private void SetMapStyle(@Framework.MapStyle int style) + private void setMapStyle(@Framework.MapStyle int style) { // Because of the distinct behavior in auto theme, Android Auto employs its own mechanism for theme switching. // For the Android Auto theme switcher, please consult the app.organicmaps.car.util.ThemeUtils module. @@ -164,4 +165,10 @@ public enum ThemeSwitcher else Framework.nativeMarkMapStyle(style); } + + private int resolveTheme(@NonNull String theme) + { + //TODO: Dynamic themes processing here, or passthrough for normal ones + return R.string.theme_default; + } } -- 2.45.3 From 0edbc5c42123531b48f875a55c8434bc33cfeead Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 19 Dec 2024 16:30:04 +0000 Subject: [PATCH 10/49] change this --- .../main/java/app/organicmaps/SplashActivity.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/SplashActivity.java b/android/app/src/main/java/app/organicmaps/SplashActivity.java index ca2efa2dab..5f5fe41458 100644 --- a/android/app/src/main/java/app/organicmaps/SplashActivity.java +++ b/android/app/src/main/java/app/organicmaps/SplashActivity.java @@ -63,12 +63,13 @@ public class SplashActivity extends AppCompatActivity final Context context = getApplicationContext(); final String theme = Config.getUiThemeSettings(context); - if (ThemeUtils.isDefaultTheme(context, theme)) - setTheme(R.style.MwmTheme_Splash); - else if (ThemeUtils.isNightTheme(context, theme)) - setTheme(R.style.MwmTheme_Night_Splash); - else - throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); + //Need to change this to use android theme system instead of manually setting +// if (ThemeUtils.isDefaultTheme(context, theme)) +// setTheme(R.style.MwmTheme_Splash); +// else if (ThemeUtils.isNightTheme(context, theme)) +// setTheme(R.style.MwmTheme_Night_Splash); +// else +// throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); UiThread.cancelDelayedTasks(mInitCoreDelayedTask); setContentView(R.layout.activity_splash); -- 2.45.3 From ebbe713f8f3ac590ef5898dab4b4f20d65020f7d Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 19 Dec 2024 16:33:18 +0000 Subject: [PATCH 11/49] more change needed --- .../DownloadResourcesLegacyActivity.java | 12 ++++---- .../java/app/organicmaps/MwmActivity.java | 28 +++++++++--------- .../base/BaseMwmFragmentActivity.java | 29 ++++++++++--------- .../bookmarks/BookmarkCategoriesActivity.java | 12 ++++---- .../bookmarks/BookmarkListActivity.java | 12 ++++---- .../organicmaps/search/SearchActivity.java | 12 ++++---- 6 files changed, 53 insertions(+), 52 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java b/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java index 2eb49fc6d3..a873f763aa 100644 --- a/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java +++ b/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java @@ -450,12 +450,12 @@ public class DownloadResourcesLegacyActivity extends BaseMwmFragmentActivity .show(); } - @Override - @StyleRes - public int getThemeResourceId(@NonNull String theme) - { - return R.style.MwmTheme_DownloadResourcesLegacy; - } +// @Override +// @StyleRes +// public int getThemeResourceId(@NonNull String theme) +// { +// return R.style.MwmTheme_DownloadResourcesLegacy; +// } private static native int nativeGetBytesToDownload(); private static native int nativeStartNextFileDownload(Listener listener); diff --git a/android/app/src/main/java/app/organicmaps/MwmActivity.java b/android/app/src/main/java/app/organicmaps/MwmActivity.java index 416f528e24..262bdbb65f 100644 --- a/android/app/src/main/java/app/organicmaps/MwmActivity.java +++ b/android/app/src/main/java/app/organicmaps/MwmActivity.java @@ -475,20 +475,20 @@ public class MwmActivity extends BaseMwmFragmentActivity } } - @Override - @StyleRes - protected int getThemeResourceId(@NonNull String theme) - { - Context context = getApplicationContext(); - - if (ThemeUtils.isDefaultTheme(context, theme)) - return R.style.MwmTheme_MainActivity; - - if (ThemeUtils.isNightTheme(context, theme)) - return R.style.MwmTheme_Night_MainActivity; - - return super.getThemeResourceId(theme); - } +// @Override +// @StyleRes +// protected int getThemeResourceId(@NonNull String theme) +// { +// Context context = getApplicationContext(); +// +// if (ThemeUtils.isDefaultTheme(context, theme)) +// return R.style.MwmTheme_MainActivity; +// +// if (ThemeUtils.isNightTheme(context, theme)) +// return R.style.MwmTheme_Night_MainActivity; +// +// return super.getThemeResourceId(theme); +// } @Override public void onDisplayChangedToCar(@NonNull Runnable onTaskFinishedCallback) diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java index 2fb1d6cde7..9c8de1428f 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java @@ -42,19 +42,20 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity @NonNull private String mThemeName; - @StyleRes - protected int getThemeResourceId(@NonNull String theme) - { - Context context = getApplicationContext(); - - if (ThemeUtils.isDefaultTheme(context, theme)) - return R.style.MwmTheme; - - if (ThemeUtils.isNightTheme(context, theme)) - return R.style.MwmTheme_Night; - - throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); - } +// TODO: need to set theme with android system, not custom +// @StyleRes +// protected int getThemeResourceId(@NonNull String theme) +// { +// Context context = getApplicationContext(); +// +// if (ThemeUtils.isDefaultTheme(context, theme)) +// return R.style.MwmTheme; +// +// if (ThemeUtils.isNightTheme(context, theme)) +// return R.style.MwmTheme_Night; +// +// throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); +// } /** * Shows splash screen and initializes the core in case when it was not initialized. @@ -68,7 +69,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity { super.onCreate(savedInstanceState); mThemeName = Config.getUiThemeSettings(getApplicationContext()); - setTheme(getThemeResourceId(mThemeName)); + //setTheme(getThemeResourceId(mThemeName)); EdgeToEdge.enable(this, SystemBarStyle.dark(Color.TRANSPARENT)); RtlUtils.manageRtl(this); if (!MwmApplication.from(this).arePlatformAndCoreInitialized()) diff --git a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java index a15a30f1bf..76068e7375 100644 --- a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java +++ b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java @@ -40,12 +40,12 @@ public class BookmarkCategoriesActivity extends BaseToolbarActivity super.onPause(); } - @Override - @StyleRes - public int getThemeResourceId(@NonNull String theme) - { - return ThemeUtils.getWindowBgThemeResourceId(getApplicationContext(), theme); - } +// @Override +// @StyleRes +// public int getThemeResourceId(@NonNull String theme) +// { +// return ThemeUtils.getWindowBgThemeResourceId(getApplicationContext(), theme); +// } @Override protected Class getFragmentClass() diff --git a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java index 353df29639..169140b615 100644 --- a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java +++ b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java @@ -39,12 +39,12 @@ public class BookmarkListActivity extends BaseToolbarActivity super.onPause(); } - @Override - @StyleRes - public int getThemeResourceId(@NonNull String theme) - { - return ThemeUtils.getCardBgThemeResourceId(getApplicationContext(), theme); - } +// @Override +// @StyleRes +// public int getThemeResourceId(@NonNull String theme) +// { +// return ThemeUtils.getCardBgThemeResourceId(getApplicationContext(), theme); +// } @Override protected Class getFragmentClass() diff --git a/android/app/src/main/java/app/organicmaps/search/SearchActivity.java b/android/app/src/main/java/app/organicmaps/search/SearchActivity.java index abcb5cd1bd..edf414bc86 100644 --- a/android/app/src/main/java/app/organicmaps/search/SearchActivity.java +++ b/android/app/src/main/java/app/organicmaps/search/SearchActivity.java @@ -34,12 +34,12 @@ public class SearchActivity extends BaseMwmFragmentActivity activity.startActivity(i); } - @Override - @StyleRes - public int getThemeResourceId(@NonNull String theme) - { - return ThemeUtils.getCardBgThemeResourceId(getApplicationContext(), theme); - } +// @Override +// @StyleRes +// public int getThemeResourceId(@NonNull String theme) +// { +// return ThemeUtils.getCardBgThemeResourceId(getApplicationContext(), theme); +// } @Override protected Class getFragmentClass() -- 2.45.3 From 9d6a1fb1ba13ff2e03a24d05d9f53a856e1b1e57 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 19 Dec 2024 18:37:16 +0000 Subject: [PATCH 12/49] fix splash light/dark implementation --- .../main/java/app/organicmaps/SplashActivity.java | 10 ---------- android/app/src/main/res/drawable/splash.xml | 6 ------ android/app/src/main/res/layout/activity_splash.xml | 5 +++-- android/app/src/main/res/values-night/themes.xml | 12 ++++++++++++ android/app/src/main/res/values/themes.xml | 9 +-------- 5 files changed, 16 insertions(+), 26 deletions(-) delete mode 100644 android/app/src/main/res/drawable/splash.xml create mode 100644 android/app/src/main/res/values-night/themes.xml diff --git a/android/app/src/main/java/app/organicmaps/SplashActivity.java b/android/app/src/main/java/app/organicmaps/SplashActivity.java index 5f5fe41458..464842cc99 100644 --- a/android/app/src/main/java/app/organicmaps/SplashActivity.java +++ b/android/app/src/main/java/app/organicmaps/SplashActivity.java @@ -61,16 +61,6 @@ public class SplashActivity extends AppCompatActivity { super.onCreate(savedInstanceState); - final Context context = getApplicationContext(); - final String theme = Config.getUiThemeSettings(context); - //Need to change this to use android theme system instead of manually setting -// if (ThemeUtils.isDefaultTheme(context, theme)) -// setTheme(R.style.MwmTheme_Splash); -// else if (ThemeUtils.isNightTheme(context, theme)) -// setTheme(R.style.MwmTheme_Night_Splash); -// else -// throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); - UiThread.cancelDelayedTasks(mInitCoreDelayedTask); setContentView(R.layout.activity_splash); mPermissionRequest = registerForActivityResult(new ActivityResultContracts.RequestMultiplePermissions(), diff --git a/android/app/src/main/res/drawable/splash.xml b/android/app/src/main/res/drawable/splash.xml deleted file mode 100644 index 13c05b365f..0000000000 --- a/android/app/src/main/res/drawable/splash.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - diff --git a/android/app/src/main/res/layout/activity_splash.xml b/android/app/src/main/res/layout/activity_splash.xml index 94da3281a2..e43bf0ab82 100644 --- a/android/app/src/main/res/layout/activity_splash.xml +++ b/android/app/src/main/res/layout/activity_splash.xml @@ -5,14 +5,15 @@ android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" - android:gravity="center"> + android:gravity="center" + android:theme="@style/MwmTheme.Splash"> diff --git a/android/app/src/main/res/values-night/themes.xml b/android/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000000..8a17b3f3a5 --- /dev/null +++ b/android/app/src/main/res/values-night/themes.xml @@ -0,0 +1,12 @@ + + + + diff --git a/android/app/src/main/res/values/themes.xml b/android/app/src/main/res/values/themes.xml index 47a97a0165..3051d68bad 100644 --- a/android/app/src/main/res/values/themes.xml +++ b/android/app/src/main/res/values/themes.xml @@ -4,19 +4,12 @@ - - + diff --git a/android/app/src/main/res/values-night/themes.xml b/android/app/src/main/res/values-night/themes.xml index 8a17b3f3a5..237a0c34f4 100644 --- a/android/app/src/main/res/values-night/themes.xml +++ b/android/app/src/main/res/values-night/themes.xml @@ -1,7 +1,6 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/res/values-v27/themes.xml b/android/app/src/main/res/values-v27/themes.xml index 49e90150ec..e4528b86ff 100644 --- a/android/app/src/main/res/values-v27/themes.xml +++ b/android/app/src/main/res/values-v27/themes.xml @@ -8,11 +8,4 @@ shortEdges - \ No newline at end of file diff --git a/android/app/src/main/res/values/themes-base.xml b/android/app/src/main/res/values/themes-base.xml index 8aa30d5793..a822323ea2 100644 --- a/android/app/src/main/res/values/themes-base.xml +++ b/android/app/src/main/res/values/themes-base.xml @@ -1,6 +1,5 @@ - - - - diff --git a/android/app/src/main/res/values/themes.xml b/android/app/src/main/res/values/themes.xml index 3051d68bad..69f325eab5 100644 --- a/android/app/src/main/res/values/themes.xml +++ b/android/app/src/main/res/values/themes.xml @@ -1,7 +1,6 @@ - - - - - - - - + - - - - - @@ -103,26 +72,6 @@ @color/bg_dialog_translucent - - - - - - @@ -159,37 +100,18 @@ @drawable/ic_downloader_folder_done - - - - - - - - -- 2.45.3 From 6135c19079f51a38220e25e7d108db10606af5cc Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 19 Dec 2024 20:58:23 +0000 Subject: [PATCH 14/49] remove superfluous theme setting code --- .../base/BaseMwmDialogFragment.java | 35 ------------------- .../editor/HoursMinutesPickerFragment.java | 5 +-- .../java/app/organicmaps/util/ThemeUtils.java | 24 ------------- .../widget/placepage/DirectionFragment.java | 7 ---- .../placepage/EditBookmarkFragment.java | 6 ---- 5 files changed, 1 insertion(+), 76 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java index dd6a9f5777..aebb8d757e 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java @@ -14,46 +14,11 @@ import app.organicmaps.util.ThemeUtils; public class BaseMwmDialogFragment extends DialogFragment { - @StyleRes - protected final int getFullscreenTheme() - { - return ThemeUtils.isNightTheme(requireContext()) ? getFullscreenDarkTheme() : getFullscreenLightTheme(); - } - protected int getStyle() { return STYLE_NORMAL; } - protected @StyleRes int getCustomTheme() - { - return 0; - } - - @Override - public void onCreate(@Nullable Bundle savedInstanceState) - { - super.onCreate(savedInstanceState); - - int style = getStyle(); - int theme = getCustomTheme(); - if (style != STYLE_NORMAL || theme != 0) - //noinspection WrongConstant - setStyle(style, theme); - } - - @StyleRes - protected int getFullscreenLightTheme() - { - return R.style.MwmTheme_DialogFragment_Fullscreen; - } - - @StyleRes - protected int getFullscreenDarkTheme() - { - return R.style.MwmTheme_DialogFragment_Fullscreen_Night; - } - @NonNull protected Application getAppContextOrThrow() { diff --git a/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java b/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java index 3708921150..948327d89c 100644 --- a/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java +++ b/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java @@ -79,10 +79,7 @@ public class HoursMinutesPickerFragment extends BaseMwmDialogFragment //noinspection ConstantConditions mTabs.getTabAt(mSelectedTab).select(); - @StyleRes final int theme = ThemeUtils.isNightTheme(requireContext()) ? - R.style.MwmMain_DialogFragment_TimePicker_Night : - R.style.MwmMain_DialogFragment_TimePicker; - final AlertDialog dialog = new MaterialAlertDialogBuilder(requireActivity(), theme) + final AlertDialog dialog = new MaterialAlertDialogBuilder(requireActivity()) .setView(root) .setNegativeButton(R.string.cancel, null) .setPositiveButton(R.string.ok, null) diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index 8d66691289..b620518c78 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -130,28 +130,4 @@ public final class ThemeUtils String nightTheme = context.getString(R.string.theme_night); return (defaultTheme.equals(theme) || nightTheme.equals(theme)); } - - @StyleRes - public static int getCardBgThemeResourceId(@NonNull Context context, @NonNull String theme) - { - if (isDefaultTheme(context, theme)) - return R.style.MwmTheme_CardBg; - - if (isNightTheme(context, theme)) - return R.style.MwmTheme_Night_CardBg; - - throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); - } - - @StyleRes - public static int getWindowBgThemeResourceId(@NonNull Context context, @NonNull String theme) - { - if (isDefaultTheme(context, theme)) - return R.style.MwmTheme_WindowBg; - - if (isNightTheme(context, theme)) - return R.style.MwmTheme_Night_WindowBg; - - throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); - } } diff --git a/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java b/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java index 28cbf2b032..59cba0d921 100644 --- a/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java +++ b/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java @@ -35,13 +35,6 @@ public class DirectionFragment extends BaseMwmDialogFragment private TextView mTvDistance; private MapObject mMapObject; - - @Override - protected int getCustomTheme() - { - return R.style.MwmTheme_DialogFragment_Fullscreen_Translucent; - } - @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { diff --git a/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java b/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java index dd31a18ac1..be1696a5b6 100644 --- a/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java +++ b/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java @@ -103,12 +103,6 @@ public class EditBookmarkFragment extends BaseMwmDialogFragment implements View. public EditBookmarkFragment() {} - @Override - protected int getCustomTheme() - { - return getFullscreenTheme(); - } - @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) -- 2.45.3 From c037e951a0706067eb397de3a653af38a36ba0f7 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 19 Dec 2024 22:05:10 +0000 Subject: [PATCH 15/49] remove uimode configchanges in manifest --- android/app/src/main/AndroidManifest.xml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 0a7e8fb475..f252e36e8d 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -344,8 +344,7 @@ + android:name="app.organicmaps.base.BaseMwmFragmentActivity" /> @@ -436,41 +434,33 @@ + android:windowSoftInputMode="stateVisible" /> + android:label="@string/place_description_title" /> + android:label="@string/driving_options_title" /> + android:name="app.organicmaps.MapPlaceholderActivity" /> Date: Fri, 20 Dec 2024 15:41:34 +0000 Subject: [PATCH 16/49] these need to be duplicated to night theme getResource in themeutils doesn't fall back (but i don't think it should) --- android/app/src/main/res/values-night/themes-base.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/android/app/src/main/res/values-night/themes-base.xml b/android/app/src/main/res/values-night/themes-base.xml index f4ba6ef5df..d3158b3fe4 100644 --- a/android/app/src/main/res/values-night/themes-base.xml +++ b/android/app/src/main/res/values-night/themes-base.xml @@ -116,6 +116,15 @@ @color/elevation_profile_dark @style/PopupMenu.Dark + @drawable/ic_layers_outdoors_active + @drawable/ic_layers_traffic_active + @drawable/ic_layers_subway_active + @drawable/ic_layers_isoline_active + @drawable/ic_layers_outdoors_inactive + @drawable/ic_layers_traffic_inactive + @drawable/ic_layers_subway_inactive + @drawable/ic_layers_isoline_inactive + @style/MwmWidget.BottomSheet @style/MwmTheme.BottomSheetDialog -- 2.45.3 From 637a0510338bfcae9d542faea479d15fef8a2f79 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Fri, 20 Dec 2024 15:58:03 +0000 Subject: [PATCH 17/49] return getcustomtheme still needed --- .../organicmaps/base/BaseMwmDialogFragment.java | 16 ++++++++++++++++ .../widget/placepage/DirectionFragment.java | 7 +++++++ .../widget/placepage/EditBookmarkFragment.java | 6 ++++++ 3 files changed, 29 insertions(+) diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java index aebb8d757e..df1f2abc3b 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmDialogFragment.java @@ -19,6 +19,22 @@ public class BaseMwmDialogFragment extends DialogFragment return STYLE_NORMAL; } + protected @StyleRes int getCustomTheme() + { + return 0; + } + + @Override + public void onCreate(@Nullable Bundle savedInstanceState) + { + super.onCreate(savedInstanceState); + + int style = getStyle(); + int theme = getCustomTheme(); + if (style != STYLE_NORMAL || theme != 0) + setStyle(style, theme); + } + @NonNull protected Application getAppContextOrThrow() { diff --git a/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java b/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java index 59cba0d921..28cbf2b032 100644 --- a/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java +++ b/android/app/src/main/java/app/organicmaps/widget/placepage/DirectionFragment.java @@ -35,6 +35,13 @@ public class DirectionFragment extends BaseMwmDialogFragment private TextView mTvDistance; private MapObject mMapObject; + + @Override + protected int getCustomTheme() + { + return R.style.MwmTheme_DialogFragment_Fullscreen_Translucent; + } + @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { diff --git a/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java b/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java index be1696a5b6..66e4ffac81 100644 --- a/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java +++ b/android/app/src/main/java/app/organicmaps/widget/placepage/EditBookmarkFragment.java @@ -103,6 +103,12 @@ public class EditBookmarkFragment extends BaseMwmDialogFragment implements View. public EditBookmarkFragment() {} + @Override + protected int getCustomTheme() + { + return R.style.MwmTheme_DialogFragment_Fullscreen; + } + @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) -- 2.45.3 From 4b420f8c5bacc8815f348dee0fbb421f62ec6aee Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 12:14:52 +0000 Subject: [PATCH 18/49] rename get/setThemeSettings - no longer just UI theme Signed-off-by: Harry Bond --- android/app/src/main/java/app/organicmaps/Map.java | 4 ++-- .../app/organicmaps/base/BaseMwmFragmentActivity.java | 7 ++----- .../organicmaps/settings/SettingsPrefsFragment.java | 4 ++-- .../src/main/java/app/organicmaps/util/Config.java | 7 +++---- .../main/java/app/organicmaps/util/ThemeSwitcher.java | 2 +- .../main/java/app/organicmaps/util/ThemeUtils.java | 11 +++++------ 6 files changed, 15 insertions(+), 20 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/Map.java b/android/app/src/main/java/app/organicmaps/Map.java index 03d8a99b7d..8c609b8aa7 100644 --- a/android/app/src/main/java/app/organicmaps/Map.java +++ b/android/app/src/main/java/app/organicmaps/Map.java @@ -253,7 +253,7 @@ public final class Map public void onPause(final Context context) { - mUiThemeOnPause = Config.getUiThemeSettings(context); + mUiThemeOnPause = Config.getThemeSettings(context); // Pause/Resume can be called without surface creation/destroy. if (mSurfaceAttached) @@ -363,7 +363,7 @@ public final class Map private boolean isThemeChangingProcess(final Context context) { - return mUiThemeOnPause != null && !mUiThemeOnPause.equals(Config.getUiThemeSettings(context)); + return mUiThemeOnPause != null && !mUiThemeOnPause.equals(Config.getThemeSettings(context)); } // Engine diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java index 9c8de1428f..b4ff839308 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java @@ -1,7 +1,6 @@ package app.organicmaps.base; import android.content.ComponentName; -import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.content.res.Configuration; @@ -14,7 +13,6 @@ import androidx.activity.SystemBarStyle; import androidx.annotation.CallSuper; import androidx.annotation.NonNull; import androidx.annotation.Nullable; -import androidx.annotation.StyleRes; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.widget.Toolbar; import androidx.fragment.app.Fragment; @@ -27,7 +25,6 @@ import app.organicmaps.SplashActivity; import app.organicmaps.util.Config; import app.organicmaps.util.RtlUtils; import app.organicmaps.util.ThemeSwitcher; -import app.organicmaps.util.ThemeUtils; import app.organicmaps.util.concurrency.UiThread; import app.organicmaps.util.log.Logger; @@ -68,7 +65,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity protected final void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); - mThemeName = Config.getUiThemeSettings(getApplicationContext()); + mThemeName = Config.getThemeSettings(getApplicationContext()); //setTheme(getThemeResourceId(mThemeName)); EdgeToEdge.enable(this, SystemBarStyle.dark(Color.TRANSPARENT)); RtlUtils.manageRtl(this); @@ -128,7 +125,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity public void onPostResume() { super.onPostResume(); - if (!mThemeName.equals(Config.getUiThemeSettings(getApplicationContext()))) + if (!mThemeName.equals(Config.getThemeSettings(getApplicationContext()))) { // Workaround described in https://code.google.com/p/android/issues/detail?id=93731 UiThread.runLater(this::recreate); diff --git a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java index 2597c3fd4c..816385f861 100644 --- a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java +++ b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java @@ -395,12 +395,12 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La { final ListPreference pref = getPreference(getString(R.string.pref_map_style)); - String curTheme = Config.getUiThemeSettings(requireContext()); + String curTheme = Config.getThemeSettings(requireContext()); pref.setValue(curTheme); pref.setSummary(pref.getEntry()); pref.setOnPreferenceChangeListener((preference, newValue) -> { final String themeName = (String) newValue; - if (!Config.setUiThemeSettings(requireContext(), themeName)) + if (!Config.setThemeSettings(requireContext(), themeName)) return true; ThemeSwitcher.INSTANCE.restart(false); diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index 23ac69d341..068a39b9c9 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -2,7 +2,6 @@ package app.organicmaps.util; import android.content.Context; import android.content.SharedPreferences; -import android.content.res.Resources; import android.os.Build; import androidx.annotation.NonNull; @@ -253,7 +252,7 @@ public final class Config } @NonNull - public static String getUiThemeSettings(@NonNull Context context) + public static String getThemeSettings(@NonNull Context context) { // Fallback & default theme String fallbackTheme = MwmApplication.from(context).getString(R.string.theme_follow_system); @@ -264,9 +263,9 @@ public final class Config return fallbackTheme; } - public static boolean setUiThemeSettings(@NonNull Context context, @NonNull String theme) + public static boolean setThemeSettings(@NonNull Context context, @NonNull String theme) { - if (getUiThemeSettings(context).equals(theme)) + if (getThemeSettings(context).equals(theme)) return false; setString(KEY_MISC_UI_THEME, theme); 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 03eef31636..faf5cbf7b4 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -69,7 +69,7 @@ public enum ThemeSwitcher public void restart(boolean isRendererActive) { mRendererActive = isRendererActive; - String storedTheme = Config.getUiThemeSettings(mContext); + String storedTheme = Config.getThemeSettings(mContext); int currentMapStyle = Framework.nativeGetMapStyle(); // Resolve dynamic themes (follow-system, nav-auto etc.) diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index b620518c78..854c47ce19 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -7,7 +7,6 @@ import android.util.TypedValue; import androidx.annotation.AttrRes; import androidx.annotation.ColorInt; import androidx.annotation.NonNull; -import androidx.annotation.StyleRes; import app.organicmaps.R; @@ -66,7 +65,7 @@ public final class ThemeUtils public static boolean isDefaultTheme(@NonNull Context context) { - return isDefaultTheme(context, Config.getUiThemeSettings(context)); + return isDefaultTheme(context, Config.getThemeSettings(context)); } public static boolean isDefaultTheme(@NonNull Context context, String theme) @@ -77,7 +76,7 @@ public final class ThemeUtils public static boolean isNightTheme(@NonNull Context context) { - return isNightTheme(context, Config.getUiThemeSettings(context)); + return isNightTheme(context, Config.getThemeSettings(context)); } public static boolean isNightTheme(@NonNull Context context, String theme) @@ -88,7 +87,7 @@ public final class ThemeUtils public static boolean isSystemTheme(@NonNull Context context) { - return isSystemTheme(context, Config.getUiThemeSettings(context)); + return isSystemTheme(context, Config.getThemeSettings(context)); } public static boolean isSystemTheme(@NonNull Context context, String theme) @@ -99,7 +98,7 @@ public final class ThemeUtils public static boolean isNavAutoTheme(@NonNull Context context) { - return isNavAutoTheme(context, Config.getUiThemeSettings(context)); + return isNavAutoTheme(context, Config.getThemeSettings(context)); } public static boolean isNavAutoTheme(@NonNull Context context, String theme) @@ -110,7 +109,7 @@ public final class ThemeUtils public static boolean isAutoTheme(@NonNull Context context) { - return isSystemTheme(context, Config.getUiThemeSettings(context)); + return isSystemTheme(context, Config.getThemeSettings(context)); } public static boolean isAutoTheme(@NonNull Context context, String theme) -- 2.45.3 From a352d870bf54c88030a4a5922618eca04b6c4c64 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 12:26:02 +0000 Subject: [PATCH 19/49] add notes, re-name and reorder stuff Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 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 faf5cbf7b4..27cedb68b8 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -69,12 +69,12 @@ public enum ThemeSwitcher public void restart(boolean isRendererActive) { mRendererActive = isRendererActive; - String storedTheme = Config.getThemeSettings(mContext); + String storedTheme = Config.getThemeSettings(mContext); // follow-system etc + int currentMapStyle = Framework.nativeGetMapStyle(); - - // Resolve dynamic themes (follow-system, nav-auto etc.) - int resolvedTheme = resolveTheme(storedTheme); - + // 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)) @@ -103,6 +103,26 @@ public enum ThemeSwitcher AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); } + private void setMapStyle(@Framework.MapStyle int style) + { + // Because of the distinct behavior in auto theme, Android Auto employs its own mechanism for theme switching. + // For the Android Auto theme switcher, please consult the app.organicmaps.car.util.ThemeUtils module. + if (DisplayManager.from(mContext).isCarDisplayUsed()) + return; + // If rendering is not active we can mark map style, because all graphics + // will be recreated after rendering activation. + if (mRendererActive) + Framework.nativeSetMapStyle(style); + else + Framework.nativeMarkMapStyle(style); + } + + private int getAndroidTheme(@NonNull String theme) + { + //TODO: Dynamic themes processing here, or passthrough for normal ones + return R.string.theme_default; + } + private int getMapStyle(@NonNull String theme) { @Framework.MapStyle @@ -151,24 +171,4 @@ public enum ThemeSwitcher // SetMapStyle(style); // } // } - - private void setMapStyle(@Framework.MapStyle int style) - { - // Because of the distinct behavior in auto theme, Android Auto employs its own mechanism for theme switching. - // For the Android Auto theme switcher, please consult the app.organicmaps.car.util.ThemeUtils module. - if (DisplayManager.from(mContext).isCarDisplayUsed()) - return; - // If rendering is not active we can mark map style, because all graphics - // will be recreated after rendering activation. - if (mRendererActive) - Framework.nativeSetMapStyle(style); - else - Framework.nativeMarkMapStyle(style); - } - - private int resolveTheme(@NonNull String theme) - { - //TODO: Dynamic themes processing here, or passthrough for normal ones - return R.string.theme_default; - } } -- 2.45.3 From 7ecf0ba8407fee05c35981036ab139fbb3ff8cfc Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 13:24:20 +0000 Subject: [PATCH 20/49] 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 -- 2.45.3 From db3c88f62fa68196605097f5abdc817f5c7f18a5 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 13:37:44 +0000 Subject: [PATCH 21/49] split autotheme into new function Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 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 0527b235ab..631310f472 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -105,24 +105,22 @@ public enum ThemeSwitcher } /** - * Convert custom themes (auto, navauto) to default ones (light, dark, follow-system) + * Process 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) { if (ThemeUtils.isAutoTheme(mContext, theme)) - { - //TODO: Proper behaviour - return mContext.getResources().getString(R.string.theme_night); - } + return calcAutoTheme(); else if (ThemeUtils.isNavAutoTheme(mContext, theme)) { - //TODO: Proper behaviour - return mContext.getResources().getString(R.string.theme_night); + if (RoutingController.get().isVehicleNavigation()) + return calcAutoTheme(); + else + return mContext.getResources().getString(R.string.theme_default); } - else - // Passthrough for normal themes - return theme; + // Passthrough for normal themes + return theme; } private int resolveMapStyle(@NonNull String theme) @@ -150,4 +148,10 @@ public enum ThemeSwitcher return style; } + + private String calcAutoTheme() + { + //TODO: Proper behaviour - return light or dark based on time + return mContext.getResources().getString(R.string.theme_night); + } } \ No newline at end of file -- 2.45.3 From 8305cd42b2c344c3df7735e95531d7ea38c34274 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 14:44:43 +0000 Subject: [PATCH 22/49] handle system-theme in resolveMapStyle Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 32 ++++++++++++++++--- 1 file changed, 28 insertions(+), 4 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 631310f472..b57c72bea4 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -1,13 +1,16 @@ package app.organicmaps.util; import android.content.Context; +import android.content.res.Configuration; import androidx.annotation.NonNull; +import androidx.annotation.UiThread; import androidx.appcompat.app.AppCompatDelegate; import app.organicmaps.Framework; import app.organicmaps.R; import app.organicmaps.display.DisplayManager; import app.organicmaps.routing.RoutingController; +import app.organicmaps.util.log.Logger; public enum ThemeSwitcher { @@ -65,7 +68,7 @@ public enum ThemeSwitcher * true only if the map is rendered and visible on the screen * at this moment, otherwise false. */ - @androidx.annotation.UiThread + @UiThread public void restart(boolean isRendererActive) { mRendererActive = isRendererActive; @@ -74,8 +77,10 @@ public enum ThemeSwitcher // 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 - setMapStyle(resolveMapStyle(storedTheme)); - setAndroidTheme(resolveCustomThemes(storedTheme)); + String resolvedTheme = resolveCustomThemes(storedTheme); + setAndroidTheme(resolvedTheme); + int resolvedMapStyle = resolveMapStyle(resolvedTheme); + setMapStyle(resolvedMapStyle); } private void setAndroidTheme(@NonNull String theme) @@ -123,10 +128,27 @@ public enum ThemeSwitcher return theme; } + /** + * resolve the map (drape) theme + * @param theme MUST be theme_light or theme_dark + * @return drape/core compatible map style + */ private int resolveMapStyle(@NonNull String theme) { @Framework.MapStyle int style; + // if follow-system, reassign theme to default/dark + if(ThemeUtils.isSystemTheme(mContext,theme)) + { + switch (mContext.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK) + { + case Configuration.UI_MODE_NIGHT_YES: + theme = mContext.getResources().getString(R.string.theme_night); + case Configuration.UI_MODE_NIGHT_NO: + theme = mContext.getResources().getString(R.string.theme_default); + } + } + // Then if (ThemeUtils.isNightTheme(mContext, theme)) { if (RoutingController.get().isVehicleNavigation()) @@ -136,7 +158,7 @@ public enum ThemeSwitcher else style = Framework.MAP_STYLE_DARK; } - else + else if (ThemeUtils.isDefaultTheme(mContext, theme)) { if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_CLEAR; @@ -145,6 +167,8 @@ public enum ThemeSwitcher else style = Framework.MAP_STYLE_CLEAR; } + else + throw new IllegalArgumentException("resolveMapStyle() should only be passed theme_light/dark/follow-system"); return style; } -- 2.45.3 From a035bb3d9a0e299fab0805962116045be1ad3ac6 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 15:14:05 +0000 Subject: [PATCH 23/49] fix system theme more Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 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 b57c72bea4..e6af085362 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -79,7 +79,7 @@ public enum ThemeSwitcher // to handle debug commands String resolvedTheme = resolveCustomThemes(storedTheme); setAndroidTheme(resolvedTheme); - int resolvedMapStyle = resolveMapStyle(resolvedTheme); + int resolvedMapStyle = resolveMapStyle(resolvedTheme); // needs to be after theme is applied setMapStyle(resolvedMapStyle); } @@ -138,18 +138,18 @@ public enum ThemeSwitcher @Framework.MapStyle int style; // if follow-system, reassign theme to default/dark - if(ThemeUtils.isSystemTheme(mContext,theme)) + String resolvedTheme = theme; + if(ThemeUtils.isSystemTheme(mContext, theme)) { - switch (mContext.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK) + resolvedTheme = switch (mContext.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK) { - case Configuration.UI_MODE_NIGHT_YES: - theme = mContext.getResources().getString(R.string.theme_night); - case Configuration.UI_MODE_NIGHT_NO: - theme = mContext.getResources().getString(R.string.theme_default); - } + case Configuration.UI_MODE_NIGHT_YES -> mContext.getResources().getString(R.string.theme_night); + case Configuration.UI_MODE_NIGHT_NO -> mContext.getResources().getString(R.string.theme_default); + default -> resolvedTheme; + }; } // Then - if (ThemeUtils.isNightTheme(mContext, theme)) + if (ThemeUtils.isNightTheme(mContext, resolvedTheme)) { if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_DARK; @@ -158,7 +158,7 @@ public enum ThemeSwitcher else style = Framework.MAP_STYLE_DARK; } - else if (ThemeUtils.isDefaultTheme(mContext, theme)) + else if (ThemeUtils.isDefaultTheme(mContext, resolvedTheme)) { if (RoutingController.get().isVehicleNavigation()) style = Framework.MAP_STYLE_VEHICLE_CLEAR; -- 2.45.3 From 557121f55a3e30ba4aff29acb915c2422551917f Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sat, 28 Dec 2024 16:40:03 +0000 Subject: [PATCH 24/49] auto and navauto working Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 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 e6af085362..8675c0a017 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -2,6 +2,7 @@ package app.organicmaps.util; import android.content.Context; import android.content.res.Configuration; +import android.location.Location; import androidx.annotation.NonNull; import androidx.annotation.UiThread; @@ -9,6 +10,7 @@ import androidx.appcompat.app.AppCompatDelegate; import app.organicmaps.Framework; import app.organicmaps.R; import app.organicmaps.display.DisplayManager; +import app.organicmaps.location.LocationHelper; import app.organicmaps.routing.RoutingController; import app.organicmaps.util.log.Logger; @@ -116,11 +118,11 @@ public enum ThemeSwitcher private String resolveCustomThemes(@NonNull String theme) { if (ThemeUtils.isAutoTheme(mContext, theme)) - return calcAutoTheme(); + return calcAutoTheme(theme); else if (ThemeUtils.isNavAutoTheme(mContext, theme)) { if (RoutingController.get().isVehicleNavigation()) - return calcAutoTheme(); + return calcAutoTheme(theme); else return mContext.getResources().getString(R.string.theme_default); } @@ -168,14 +170,27 @@ public enum ThemeSwitcher style = Framework.MAP_STYLE_CLEAR; } else - throw new IllegalArgumentException("resolveMapStyle() should only be passed theme_light/dark/follow-system"); + throw new IllegalArgumentException(resolvedTheme+" passed, only follow-system/theme_light/dark are allowed."); return style; } - private String calcAutoTheme() + /** + * determine light/dark theme based on time and location + * @param currentTheme needed as a fallback + * @return theme_light/dark string + */ + private String calcAutoTheme(String currentTheme) { - //TODO: Proper behaviour - return light or dark based on time - return mContext.getResources().getString(R.string.theme_night); + String defaultTheme = mContext.getResources().getString(R.string.theme_default); + String nightTheme = mContext.getResources().getString(R.string.theme_night); + Location last = LocationHelper.from(mContext).getSavedLocation(); + if (last != null) + { + long currentTime = System.currentTimeMillis() / 1000; + boolean day = Framework.nativeIsDayTime(currentTime, last.getLatitude(), last.getLongitude()); + currentTheme = (day ? defaultTheme : nightTheme); + } + return currentTheme; } } \ No newline at end of file -- 2.45.3 From 50cbcd0171b3a2a83c65ae6ce803ecd4817c4526 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 13:58:35 +0000 Subject: [PATCH 25/49] add time-based fallback for auto Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 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 8675c0a017..46dfa95923 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -7,6 +7,9 @@ import android.location.Location; import androidx.annotation.NonNull; import androidx.annotation.UiThread; import androidx.appcompat.app.AppCompatDelegate; + +import java.util.Calendar; + import app.organicmaps.Framework; import app.organicmaps.R; import app.organicmaps.display.DisplayManager; @@ -118,11 +121,12 @@ public enum ThemeSwitcher private String resolveCustomThemes(@NonNull String theme) { if (ThemeUtils.isAutoTheme(mContext, theme)) - return calcAutoTheme(theme); + return calcAutoTheme(); else if (ThemeUtils.isNavAutoTheme(mContext, theme)) { + // nav-auto always falls back to light mode if (RoutingController.get().isVehicleNavigation()) - return calcAutoTheme(theme); + return calcAutoTheme(); else return mContext.getResources().getString(R.string.theme_default); } @@ -176,21 +180,26 @@ public enum ThemeSwitcher } /** - * determine light/dark theme based on time and location - * @param currentTheme needed as a fallback + * determine light/dark theme based on time and location, + * and falls back to time-based (06:00-18:00) when no location fix * @return theme_light/dark string */ - private String calcAutoTheme(String currentTheme) + private String calcAutoTheme() { String defaultTheme = mContext.getResources().getString(R.string.theme_default); String nightTheme = mContext.getResources().getString(R.string.theme_night); Location last = LocationHelper.from(mContext).getSavedLocation(); + long currentTime = System.currentTimeMillis() / 1000; + boolean day; if (last != null) + day = Framework.nativeIsDayTime(currentTime, last.getLatitude(), last.getLongitude()); + else { - long currentTime = System.currentTimeMillis() / 1000; - boolean day = Framework.nativeIsDayTime(currentTime, last.getLatitude(), last.getLongitude()); - currentTheme = (day ? defaultTheme : nightTheme); + currentTime = Calendar.getInstance().get(Calendar.HOUR_OF_DAY); + Logger.e("HELLO", String.valueOf(currentTime)); + day = (currentTime < 18 && currentTime > 6); } - return currentTheme; + // Finally + return (day ? defaultTheme : nightTheme); } } \ No newline at end of file -- 2.45.3 From 685c77df2a1d4652f31d8a9c7052d70495067f14 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 14:19:35 +0000 Subject: [PATCH 26/49] comment cleanup Signed-off-by: Harry Bond --- .../app/organicmaps/util/ThemeSwitcher.java | 57 ++++--------------- .../java/app/organicmaps/util/ThemeUtils.java | 19 ------- 2 files changed, 12 insertions(+), 64 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 46dfa95923..eb94d7c5c4 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -23,38 +23,6 @@ public enum ThemeSwitcher private static boolean mRendererActive = false; -// private final Runnable mAutoThemeChecker = new Runnable() -// { -// @Override -// public void run() -// { -// String nightTheme = MwmApplication.from(mContext).getString(R.string.theme_night); -// String defaultTheme = MwmApplication.from(mContext).getString(R.string.theme_default); -// String theme = defaultTheme; -// Location last = LocationHelper.from(mContext).getSavedLocation(); -// -// boolean navAuto = RoutingController.get().isNavigating() && ThemeUtils.isNavAutoTheme(mContext); -// -// if (navAuto || ThemeUtils.isAutoTheme(mContext)) -// { -// if (last == null) -// theme = Config.getCurrentUiTheme(mContext); -// else -// { -// long currentTime = System.currentTimeMillis() / 1000; -// boolean day = Framework.nativeIsDayTime(currentTime, last.getLatitude(), last.getLongitude()); -// theme = (day ? defaultTheme : nightTheme); -// } -// } -// -// setThemeAndMapStyle(theme); -// UiThread.cancelDelayedTasks(mAutoThemeChecker); -// -// if (navAuto || ThemeUtils.isAutoTheme(mContext)) -// UiThread.runLater(mAutoThemeChecker, CHECK_INTERVAL_MS); -// } -// }; - @SuppressWarnings("NotNullFieldNotInitialized") @NonNull private Context mContext; @@ -77,14 +45,12 @@ public enum ThemeSwitcher public void restart(boolean isRendererActive) { mRendererActive = isRendererActive; - String storedTheme = Config.getThemeSettings(mContext); // follow-system etc - // Resolve dynamic themes (follow-system, nav-auto etc.) to light or dark - // 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 + String storedTheme = Config.getThemeSettings(mContext); + // TODO: Handle debug commands String resolvedTheme = resolveCustomThemes(storedTheme); setAndroidTheme(resolvedTheme); - int resolvedMapStyle = resolveMapStyle(resolvedTheme); // needs to be after theme is applied + // Depends on Android theme being set due to follow-system, so has to be after setAndroidTheme. + int resolvedMapStyle = resolveMapStyle(resolvedTheme); setMapStyle(resolvedMapStyle); } @@ -124,7 +90,7 @@ public enum ThemeSwitcher return calcAutoTheme(); else if (ThemeUtils.isNavAutoTheme(mContext, theme)) { - // nav-auto always falls back to light mode + // navauto always falls back to light mode if (RoutingController.get().isVehicleNavigation()) return calcAutoTheme(); else @@ -135,7 +101,7 @@ public enum ThemeSwitcher } /** - * resolve the map (drape) theme + * Resolve the map (drape) style from a resolved theme string. * @param theme MUST be theme_light or theme_dark * @return drape/core compatible map style */ @@ -143,10 +109,11 @@ public enum ThemeSwitcher { @Framework.MapStyle int style; - // if follow-system, reassign theme to default/dark String resolvedTheme = theme; - if(ThemeUtils.isSystemTheme(mContext, theme)) + // First convert the android-but-dynamic follow system theme. + if (ThemeUtils.isSystemTheme(mContext, theme)) { + // Depends on android theme already being calculated and set. resolvedTheme = switch (mContext.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK) { case Configuration.UI_MODE_NIGHT_YES -> mContext.getResources().getString(R.string.theme_night); @@ -154,7 +121,7 @@ public enum ThemeSwitcher default -> resolvedTheme; }; } - // Then + // Then return a dark/light map style taking into account variants. if (ThemeUtils.isNightTheme(mContext, resolvedTheme)) { if (RoutingController.get().isVehicleNavigation()) @@ -180,8 +147,8 @@ public enum ThemeSwitcher } /** - * determine light/dark theme based on time and location, - * and falls back to time-based (06:00-18:00) when no location fix + * Determine light/dark theme based on time and location, + * or fall back to time-based (06:00-18:00) when there's no location fix * @return theme_light/dark string */ private String calcAutoTheme() diff --git a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java index 854c47ce19..d4ec7d4e43 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeUtils.java @@ -44,25 +44,6 @@ public final class ThemeUtils return VALUE_BUFFER.resourceId; } -// public static String getUiTheme(@NonNull Context context) -// { -// String nightTheme = context.getString(R.string.theme_night); -// String defaultTheme = context.getString(R.string.theme_default); -// -// if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) -// return nightTheme; -// -// if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_NO) -// return defaultTheme; -// -// int nightModeFlags = context.getResources() -// .getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; -// if (nightModeFlags == Configuration.UI_MODE_NIGHT_YES) -// return nightTheme; -// else -// return defaultTheme; -// } - public static boolean isDefaultTheme(@NonNull Context context) { return isDefaultTheme(context, Config.getThemeSettings(context)); -- 2.45.3 From 8c32a35806ca886e3f2e6b46196f425aae52039a Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 14:42:21 +0000 Subject: [PATCH 27/49] throw error if bad theme passed to setAndroidTheme Signed-off-by: Harry Bond --- .../java/app/organicmaps/util/ThemeSwitcher.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 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 eb94d7c5c4..6f50da4a29 100644 --- a/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java +++ b/android/app/src/main/java/app/organicmaps/util/ThemeSwitcher.java @@ -54,16 +54,21 @@ public enum ThemeSwitcher setMapStyle(resolvedMapStyle); } + /** + * Applies the android theme + * @param theme MUST be follow-system/theme_light/dark + */ 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.isNightTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); else if (ThemeUtils.isDefaultTheme(mContext, theme)) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); + else + throw new IllegalArgumentException(theme+" passed, but only follow-system/theme_light/dark are allowed."); + } private void setMapStyle(@Framework.MapStyle int style) @@ -102,7 +107,7 @@ public enum ThemeSwitcher /** * Resolve the map (drape) style from a resolved theme string. - * @param theme MUST be theme_light or theme_dark + * @param theme MUST be follow-system/theme_light/dark * @return drape/core compatible map style */ private int resolveMapStyle(@NonNull String theme) @@ -141,7 +146,7 @@ public enum ThemeSwitcher style = Framework.MAP_STYLE_CLEAR; } else - throw new IllegalArgumentException(resolvedTheme+" passed, only follow-system/theme_light/dark are allowed."); + throw new IllegalArgumentException(resolvedTheme+" passed, but only follow-system/theme_light/dark are allowed."); return style; } -- 2.45.3 From a85b84c72082da921c45ff7a5538544866dc18aa Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 14:50:31 +0000 Subject: [PATCH 28/49] clean up manifest Signed-off-by: Harry Bond --- android/app/src/main/AndroidManifest.xml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index f252e36e8d..1fc509c3b3 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -343,8 +343,6 @@ - + android:windowSoftInputMode="stateVisible"/> + android:label="@string/place_description_title"/> + android:label="@string/driving_options_title"/> Date: Sun, 29 Dec 2024 15:01:40 +0000 Subject: [PATCH 29/49] remove commented out stuff Signed-off-by: Harry Bond --- .../DownloadResourcesLegacyActivity.java | 7 ------- .../organicmaps/base/BaseMwmFragmentActivity.java | 15 --------------- .../bookmarks/BookmarkCategoriesActivity.java | 8 -------- .../bookmarks/BookmarkListActivity.java | 8 -------- 4 files changed, 38 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java b/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java index a873f763aa..fc486abecd 100644 --- a/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java +++ b/android/app/src/main/java/app/organicmaps/DownloadResourcesLegacyActivity.java @@ -450,13 +450,6 @@ public class DownloadResourcesLegacyActivity extends BaseMwmFragmentActivity .show(); } -// @Override -// @StyleRes -// public int getThemeResourceId(@NonNull String theme) -// { -// return R.style.MwmTheme_DownloadResourcesLegacy; -// } - private static native int nativeGetBytesToDownload(); private static native int nativeStartNextFileDownload(Listener listener); private static native void nativeCancelCurrentFile(); diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java index b4ff839308..9292686a99 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java @@ -39,21 +39,6 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity @NonNull private String mThemeName; -// TODO: need to set theme with android system, not custom -// @StyleRes -// protected int getThemeResourceId(@NonNull String theme) -// { -// Context context = getApplicationContext(); -// -// if (ThemeUtils.isDefaultTheme(context, theme)) -// return R.style.MwmTheme; -// -// if (ThemeUtils.isNightTheme(context, theme)) -// return R.style.MwmTheme_Night; -// -// throw new IllegalArgumentException("Attempt to apply unsupported theme: " + theme); -// } - /** * Shows splash screen and initializes the core in case when it was not initialized. * diff --git a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java index 76068e7375..8fed8bfe35 100644 --- a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java +++ b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkCategoriesActivity.java @@ -39,14 +39,6 @@ public class BookmarkCategoriesActivity extends BaseToolbarActivity super.onPause(); } - -// @Override -// @StyleRes -// public int getThemeResourceId(@NonNull String theme) -// { -// return ThemeUtils.getWindowBgThemeResourceId(getApplicationContext(), theme); -// } - @Override protected Class getFragmentClass() { diff --git a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java index 169140b615..63c7dc3713 100644 --- a/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java +++ b/android/app/src/main/java/app/organicmaps/bookmarks/BookmarkListActivity.java @@ -38,14 +38,6 @@ public class BookmarkListActivity extends BaseToolbarActivity super.onPause(); } - -// @Override -// @StyleRes -// public int getThemeResourceId(@NonNull String theme) -// { -// return ThemeUtils.getCardBgThemeResourceId(getApplicationContext(), theme); -// } - @Override protected Class getFragmentClass() { -- 2.45.3 From a577a2491178b130863aa9d1b7a3de17f81e349f Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 15:27:43 +0000 Subject: [PATCH 30/49] cleanup comments Signed-off-by: Harry Bond --- .../main/java/app/organicmaps/MwmActivity.java | 15 --------------- .../organicmaps/base/BaseMwmFragmentActivity.java | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/MwmActivity.java b/android/app/src/main/java/app/organicmaps/MwmActivity.java index 262bdbb65f..083e0054ad 100644 --- a/android/app/src/main/java/app/organicmaps/MwmActivity.java +++ b/android/app/src/main/java/app/organicmaps/MwmActivity.java @@ -475,21 +475,6 @@ public class MwmActivity extends BaseMwmFragmentActivity } } -// @Override -// @StyleRes -// protected int getThemeResourceId(@NonNull String theme) -// { -// Context context = getApplicationContext(); -// -// if (ThemeUtils.isDefaultTheme(context, theme)) -// return R.style.MwmTheme_MainActivity; -// -// if (ThemeUtils.isNightTheme(context, theme)) -// return R.style.MwmTheme_Night_MainActivity; -// -// return super.getThemeResourceId(theme); -// } - @Override public void onDisplayChangedToCar(@NonNull Runnable onTaskFinishedCallback) { diff --git a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java index 9292686a99..60c004565b 100644 --- a/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java +++ b/android/app/src/main/java/app/organicmaps/base/BaseMwmFragmentActivity.java @@ -51,7 +51,6 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity { super.onCreate(savedInstanceState); mThemeName = Config.getThemeSettings(getApplicationContext()); - //setTheme(getThemeResourceId(mThemeName)); EdgeToEdge.enable(this, SystemBarStyle.dark(Color.TRANSPARENT)); RtlUtils.manageRtl(this); if (!MwmApplication.from(this).arePlatformAndCoreInitialized()) @@ -112,6 +111,7 @@ public abstract class BaseMwmFragmentActivity extends AppCompatActivity super.onPostResume(); if (!mThemeName.equals(Config.getThemeSettings(getApplicationContext()))) { + // TODO: is this still needed? // Workaround described in https://code.google.com/p/android/issues/detail?id=93731 UiThread.runLater(this::recreate); } -- 2.45.3 From 8a4468ac1d5d07956aad6d6f40a7d03a4765828f Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 15:47:16 +0000 Subject: [PATCH 31/49] remove manual theme setting in timepicker Signed-off-by: Harry Bond --- .../app/organicmaps/editor/HoursMinutesPickerFragment.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java b/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java index 948327d89c..f7c3480220 100644 --- a/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java +++ b/android/app/src/main/java/app/organicmaps/editor/HoursMinutesPickerFragment.java @@ -138,14 +138,9 @@ public class HoursMinutesPickerFragment extends BaseMwmDialogFragment mTabs = root.findViewById(R.id.tabs); TextView tabView = (TextView) inflater.inflate(R.layout.tab_timepicker, mTabs, false); tabView.setText(getResources().getString(R.string.editor_time_from)); - final ColorStateList textColor = AppCompatResources.getColorStateList(requireContext(), - ThemeUtils.isNightTheme(requireContext()) ? R.color.accent_color_selector_night - : R.color.accent_color_selector); - tabView.setTextColor(textColor); mTabs.addTab(mTabs.newTab().setCustomView(tabView), true); tabView = (TextView) inflater.inflate(R.layout.tab_timepicker, mTabs, false); tabView.setText(getResources().getString(R.string.editor_time_to)); - tabView.setTextColor(textColor); mTabs.addTab(mTabs.newTab().setCustomView(tabView), true); mTabs.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() { -- 2.45.3 From 881e86dd93fb075a7108919738778adcca1a07ec Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 16:30:39 +0000 Subject: [PATCH 32/49] set help icon tint with xml, not programatically Signed-off-by: Harry Bond --- .../java/app/organicmaps/maplayer/MapButtonsController.java | 3 --- android/app/src/main/res/layout/map_buttons_help.xml | 3 ++- android/app/src/main/res/values-night/themes-base.xml | 1 + android/app/src/main/res/values/themes-attrs.xml | 1 + android/app/src/main/res/values/themes-base.xml | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/maplayer/MapButtonsController.java b/android/app/src/main/java/app/organicmaps/maplayer/MapButtonsController.java index e1d4c125b7..5bd7965c37 100644 --- a/android/app/src/main/java/app/organicmaps/maplayer/MapButtonsController.java +++ b/android/app/src/main/java/app/organicmaps/maplayer/MapButtonsController.java @@ -106,9 +106,6 @@ public class MapButtonsController extends Fragment helpButton.setImageResource(R.drawable.ic_christmas_tree); else helpButton.setImageResource(R.drawable.logo); - // Keep this button colorful in normal theme. - if (!ThemeUtils.isNightTheme(requireContext())) - helpButton.getDrawable().setTintList(null); } final View zoomFrame = mFrame.findViewById(R.id.zoom_buttons_container); diff --git a/android/app/src/main/res/layout/map_buttons_help.xml b/android/app/src/main/res/layout/map_buttons_help.xml index 563961dd5d..f7edc00fc7 100644 --- a/android/app/src/main/res/layout/map_buttons_help.xml +++ b/android/app/src/main/res/layout/map_buttons_help.xml @@ -6,4 +6,5 @@ style="@style/MwmWidget.MapButton.Square" android:contentDescription="@string/help" app:shapeAppearanceOverlay="@style/MwmWidget.MapButton.Square" - app:srcCompat="@drawable/ic_question_mark" /> \ No newline at end of file + app:srcCompat="@drawable/logo" + android:tint="?helpIconTint"/> \ No newline at end of file diff --git a/android/app/src/main/res/values-night/themes-base.xml b/android/app/src/main/res/values-night/themes-base.xml index d3158b3fe4..968b7f479e 100644 --- a/android/app/src/main/res/values-night/themes-base.xml +++ b/android/app/src/main/res/values-night/themes-base.xml @@ -38,6 +38,7 @@ @color/white_12 @color/yellow @color/icon_tint_light_night + @color/white_secondary @color/text_light_hint @color/divider_night diff --git a/android/app/src/main/res/values/themes-attrs.xml b/android/app/src/main/res/values/themes-attrs.xml index 75a651c16c..4c13463cda 100644 --- a/android/app/src/main/res/values/themes-attrs.xml +++ b/android/app/src/main/res/values/themes-attrs.xml @@ -15,6 +15,7 @@ + diff --git a/android/app/src/main/res/values/themes-base.xml b/android/app/src/main/res/values/themes-base.xml index a822323ea2..8f0945efca 100644 --- a/android/app/src/main/res/values/themes-base.xml +++ b/android/app/src/main/res/values/themes-base.xml @@ -36,6 +36,7 @@ @color/black_12 @color/yellow @color/icon_tint_light + @android:color/transparent @color/text_dark_hint @color/divider -- 2.45.3 From 3f4721bbd9ee73b34ac9d50093fdf0c74ce06041 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 17:51:33 +0000 Subject: [PATCH 33/49] set routing buttons colour with xml, not programatically Signed-off-by: Harry Bond --- .../organicmaps/widget/RoutingToolbarButton.java | 6 ++---- .../main/res/color/routing_toolbar_icon_tint.xml | 2 +- .../res/color/routing_toolbar_icon_tint_night.xml | 11 ----------- .../res/drawable/routing_toolbar_button_active.xml | 2 +- .../res/drawable/routing_toolbar_button_night.xml | 13 ------------- .../res/drawable/routing_toolbar_button_normal.xml | 2 +- .../routing_toolbar_button_normal_night.xml | 7 ------- .../app/src/main/res/values-night/themes-base.xml | 3 +++ android/app/src/main/res/values/themes-attrs.xml | 3 +++ android/app/src/main/res/values/themes-base.xml | 4 ++++ 10 files changed, 15 insertions(+), 38 deletions(-) delete mode 100644 android/app/src/main/res/color/routing_toolbar_icon_tint_night.xml delete mode 100644 android/app/src/main/res/drawable/routing_toolbar_button_night.xml delete mode 100644 android/app/src/main/res/drawable/routing_toolbar_button_normal_night.xml diff --git a/android/app/src/main/java/app/organicmaps/widget/RoutingToolbarButton.java b/android/app/src/main/java/app/organicmaps/widget/RoutingToolbarButton.java index cfad34db1f..00ba4381f6 100644 --- a/android/app/src/main/java/app/organicmaps/widget/RoutingToolbarButton.java +++ b/android/app/src/main/java/app/organicmaps/widget/RoutingToolbarButton.java @@ -37,10 +37,8 @@ public class RoutingToolbarButton extends AppCompatRadioButton private void initView() { - setBackgroundResource(ThemeUtils.isNightTheme(getContext()) ? R.drawable.routing_toolbar_button_night - : R.drawable.routing_toolbar_button); - setButtonTintList(ThemeUtils.isNightTheme(getContext()) ? R.color.routing_toolbar_icon_tint_night - : R.color.routing_toolbar_icon_tint); + setBackgroundResource(R.drawable.routing_toolbar_button); + setButtonTintList(R.color.routing_toolbar_icon_tint); } public void progress() diff --git a/android/app/src/main/res/color/routing_toolbar_icon_tint.xml b/android/app/src/main/res/color/routing_toolbar_icon_tint.xml index c324c3fdc0..0eb6cc00f4 100644 --- a/android/app/src/main/res/color/routing_toolbar_icon_tint.xml +++ b/android/app/src/main/res/color/routing_toolbar_icon_tint.xml @@ -2,7 +2,7 @@ + android:color="?routingToolbarButtonIconActive"/> diff --git a/android/app/src/main/res/color/routing_toolbar_icon_tint_night.xml b/android/app/src/main/res/color/routing_toolbar_icon_tint_night.xml deleted file mode 100644 index 883a8200a2..0000000000 --- a/android/app/src/main/res/color/routing_toolbar_icon_tint_night.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/android/app/src/main/res/drawable/routing_toolbar_button_active.xml b/android/app/src/main/res/drawable/routing_toolbar_button_active.xml index 1d422d4e2f..93f5580705 100644 --- a/android/app/src/main/res/drawable/routing_toolbar_button_active.xml +++ b/android/app/src/main/res/drawable/routing_toolbar_button_active.xml @@ -3,5 +3,5 @@ android:shape="oval" android:height="40dp" android:width="40dp"> - + diff --git a/android/app/src/main/res/drawable/routing_toolbar_button_night.xml b/android/app/src/main/res/drawable/routing_toolbar_button_night.xml deleted file mode 100644 index 0be952a4b4..0000000000 --- a/android/app/src/main/res/drawable/routing_toolbar_button_night.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/android/app/src/main/res/drawable/routing_toolbar_button_normal.xml b/android/app/src/main/res/drawable/routing_toolbar_button_normal.xml index ebfa6cbb6a..35a47fc6a0 100644 --- a/android/app/src/main/res/drawable/routing_toolbar_button_normal.xml +++ b/android/app/src/main/res/drawable/routing_toolbar_button_normal.xml @@ -3,5 +3,5 @@ android:shape="oval" android:height="40dp" android:width="40dp"> - + diff --git a/android/app/src/main/res/drawable/routing_toolbar_button_normal_night.xml b/android/app/src/main/res/drawable/routing_toolbar_button_normal_night.xml deleted file mode 100644 index 47906aacb4..0000000000 --- a/android/app/src/main/res/drawable/routing_toolbar_button_normal_night.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/android/app/src/main/res/values-night/themes-base.xml b/android/app/src/main/res/values-night/themes-base.xml index 968b7f479e..11d4d6eb76 100644 --- a/android/app/src/main/res/values-night/themes-base.xml +++ b/android/app/src/main/res/values-night/themes-base.xml @@ -81,6 +81,9 @@ @style/MwmTheme.Navigation @color/routing_button_tint + @color/routing_button_activated_tint_night + @color/routing_button_tint + @color/bg_primary_dark_night @drawable/list_divider_night diff --git a/android/app/src/main/res/values/themes-attrs.xml b/android/app/src/main/res/values/themes-attrs.xml index 4c13463cda..d8ee76d584 100644 --- a/android/app/src/main/res/values/themes-attrs.xml +++ b/android/app/src/main/res/values/themes-attrs.xml @@ -43,6 +43,9 @@ + + + diff --git a/android/app/src/main/res/values/themes-base.xml b/android/app/src/main/res/values/themes-base.xml index 8f0945efca..6ae504024b 100644 --- a/android/app/src/main/res/values/themes-base.xml +++ b/android/app/src/main/res/values/themes-base.xml @@ -79,6 +79,10 @@ @style/MwmTheme.Navigation @color/routing_button_tint + @color/routing_button_activated_tint + @color/routing_button_tint + @color/bg_primary_dark + @style/PreferenceThemeOverlay.v14.Material -- 2.45.3 From ab0633ca261a19f40ad0b21fc90ad69050dd5366 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 18:01:20 +0000 Subject: [PATCH 34/49] trafficbutton - comment out isNightTheme usages Signed-off-by: Harry Bond --- .../maplayer/traffic/widget/TrafficButton.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java b/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java index edfd31a185..7d254867c0 100644 --- a/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java +++ b/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java @@ -46,22 +46,25 @@ public class TrafficButton void turnOff() { stopWaitingAnimation(); - mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_on_night - : R.drawable.ic_traffic_on); +// Don't set theme programatically - use an xml with a night variant instead. +// mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_on_night +// : R.drawable.ic_traffic_on); } void turnOn() { stopWaitingAnimation(); - mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_on_night - : R.drawable.ic_traffic_on); +// Don't set theme programatically - use an xml with a night variant instead. +// mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_on_night +// : R.drawable.ic_traffic_on); } void markAsOutdated() { stopWaitingAnimation(); - mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_outdated_night - : R.drawable.ic_traffic_outdated); +// Don't set theme programatically - use an xml with a night variant instead. +// mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_outdated_night +// : R.drawable.ic_traffic_outdated); } void startWaitingAnimation() -- 2.45.3 From d5bb82c5dea1040d50f41a22a5b937396c9c4085 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 18:18:22 +0000 Subject: [PATCH 35/49] don't set settings card background programatically Signed-off-by: Harry Bond --- .../app/organicmaps/settings/BaseXmlSettingsFragment.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/settings/BaseXmlSettingsFragment.java b/android/app/src/main/java/app/organicmaps/settings/BaseXmlSettingsFragment.java index 2371877ae9..e4037dd1f0 100644 --- a/android/app/src/main/java/app/organicmaps/settings/BaseXmlSettingsFragment.java +++ b/android/app/src/main/java/app/organicmaps/settings/BaseXmlSettingsFragment.java @@ -50,13 +50,6 @@ abstract class BaseXmlSettingsFragment extends PreferenceFragmentCompat { super.onViewCreated(view, savedInstanceState); - int color; - if (ThemeUtils.isDefaultTheme(requireContext())) - color = ContextCompat.getColor(requireContext(), R.color.bg_cards); - else - color = ContextCompat.getColor(requireContext(), R.color.bg_cards_night); - view.setBackgroundColor(color); - RecyclerView recyclerView = getListView(); ViewCompat.setOnApplyWindowInsetsListener(recyclerView, new ScrollableContentInsetsListener(recyclerView)); } -- 2.45.3 From 766014752e1d3ec01db7ae3907bafc31d0acf35e Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 19:59:41 +0000 Subject: [PATCH 36/49] use night drawable variants instead of getting category icons programatically Signed-off-by: Harry Bond --- .../app/organicmaps/search/CategoriesAdapter.java | 3 --- .../anim_traffic_loading.xml} | 0 .../bg_altitude.xml} | 0 .../bg_nav_next_next_turn.xml} | 0 .../bg_nav_next_turn.xml} | 0 .../bg_point_desc.xml} | 0 .../bg_rounded_rect.xml} | 0 .../bg_search_wheel_background_rect.xml} | 0 .../bg_search_wheel_background_round.xml} | 0 .../bg_your_location_pin.xml} | 0 .../button_night.xml => drawable-night/button.xml} | 0 .../button_accent.xml} | 0 .../button_accent_disabled.xml} | 0 .../button_accent_internal.xml} | 0 .../button_accent_normal.xml} | 0 .../button_accent_pressed.xml} | 0 .../button_disabled.xml} | 0 .../button_normal.xml} | 0 .../button_pressed.xml} | 0 .../dot_divider.xml} | 0 .../ic_category_atm.xml} | 0 .../ic_category_bank.xml} | 0 .../ic_category_children.xml} | 0 .../ic_category_eat.xml} | 0 .../ic_category_entertainment.xml} | 0 .../ic_category_food.xml} | 0 .../ic_category_fuel.xml} | 0 .../ic_category_hospital.xml} | 0 .../ic_category_hotel.xml} | 0 .../ic_category_luggagehero.xml} | 0 .../ic_category_nightlife.xml} | 0 .../ic_category_parking.xml} | 0 .../ic_category_pharmacy.xml} | 0 .../ic_category_police.xml} | 0 .../ic_category_post.xml} | 0 .../ic_category_recycling.xml} | 0 .../ic_category_rv.xml} | 0 .../ic_category_secondhand.xml} | 0 .../ic_category_shopping.xml} | 0 .../ic_category_toilet.xml} | 0 .../ic_category_tourism.xml} | 0 .../ic_category_transport.xml} | 0 .../ic_category_water.xml} | 0 .../ic_category_wifi.xml} | 0 .../ic_menu_location_pending.png} | Bin .../list_divider.xml} | 0 46 files changed, 3 deletions(-) rename android/app/src/main/res/{drawable/anim_traffic_loading_night.xml => drawable-night/anim_traffic_loading.xml} (100%) rename android/app/src/main/res/{drawable/bg_altitude_night.xml => drawable-night/bg_altitude.xml} (100%) rename android/app/src/main/res/{drawable/bg_nav_next_next_turn_night.xml => drawable-night/bg_nav_next_next_turn.xml} (100%) rename android/app/src/main/res/{drawable/bg_nav_next_turn_night.xml => drawable-night/bg_nav_next_turn.xml} (100%) rename android/app/src/main/res/{drawable/bg_point_desc_night.xml => drawable-night/bg_point_desc.xml} (100%) rename android/app/src/main/res/{drawable/bg_rounded_rect_night.xml => drawable-night/bg_rounded_rect.xml} (100%) rename android/app/src/main/res/{drawable/bg_search_wheel_background_rect_night.xml => drawable-night/bg_search_wheel_background_rect.xml} (100%) rename android/app/src/main/res/{drawable/bg_search_wheel_background_round_night.xml => drawable-night/bg_search_wheel_background_round.xml} (100%) rename android/app/src/main/res/{drawable/bg_your_location_pin_night.xml => drawable-night/bg_your_location_pin.xml} (100%) rename android/app/src/main/res/{drawable/button_night.xml => drawable-night/button.xml} (100%) rename android/app/src/main/res/{drawable/button_accent_night.xml => drawable-night/button_accent.xml} (100%) rename android/app/src/main/res/{drawable/button_accent_disabled_night.xml => drawable-night/button_accent_disabled.xml} (100%) rename android/app/src/main/res/{drawable/button_accent_night_internal.xml => drawable-night/button_accent_internal.xml} (100%) rename android/app/src/main/res/{drawable/button_accent_normal_night.xml => drawable-night/button_accent_normal.xml} (100%) rename android/app/src/main/res/{drawable/button_accent_pressed_night.xml => drawable-night/button_accent_pressed.xml} (100%) rename android/app/src/main/res/{drawable/button_disabled_night.xml => drawable-night/button_disabled.xml} (100%) rename android/app/src/main/res/{drawable/button_normal_night.xml => drawable-night/button_normal.xml} (100%) rename android/app/src/main/res/{drawable/button_pressed_night.xml => drawable-night/button_pressed.xml} (100%) rename android/app/src/main/res/{drawable/dot_divider_night.xml => drawable-night/dot_divider.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_atm_night.xml => drawable-night/ic_category_atm.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_bank_night.xml => drawable-night/ic_category_bank.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_children_night.xml => drawable-night/ic_category_children.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_eat_night.xml => drawable-night/ic_category_eat.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_entertainment_night.xml => drawable-night/ic_category_entertainment.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_food_night.xml => drawable-night/ic_category_food.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_fuel_night.xml => drawable-night/ic_category_fuel.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_hospital_night.xml => drawable-night/ic_category_hospital.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_hotel_night.xml => drawable-night/ic_category_hotel.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_luggagehero_night.xml => drawable-night/ic_category_luggagehero.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_nightlife_night.xml => drawable-night/ic_category_nightlife.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_parking_night.xml => drawable-night/ic_category_parking.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_pharmacy_night.xml => drawable-night/ic_category_pharmacy.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_police_night.xml => drawable-night/ic_category_police.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_post_night.xml => drawable-night/ic_category_post.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_recycling_night.xml => drawable-night/ic_category_recycling.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_rv_night.xml => drawable-night/ic_category_rv.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_secondhand_night.xml => drawable-night/ic_category_secondhand.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_shopping_night.xml => drawable-night/ic_category_shopping.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_toilet_night.xml => drawable-night/ic_category_toilet.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_tourism_night.xml => drawable-night/ic_category_tourism.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_transport_night.xml => drawable-night/ic_category_transport.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_water_night.xml => drawable-night/ic_category_water.xml} (100%) rename android/app/src/main/res/{drawable/ic_category_wifi_night.xml => drawable-night/ic_category_wifi.xml} (100%) rename android/app/src/main/res/{drawable/ic_menu_location_pending_night.png => drawable-night/ic_menu_location_pending.png} (100%) rename android/app/src/main/res/{drawable/list_divider_night.xml => drawable-night/list_divider.xml} (100%) diff --git a/android/app/src/main/java/app/organicmaps/search/CategoriesAdapter.java b/android/app/src/main/java/app/organicmaps/search/CategoriesAdapter.java index ea8bf7504b..aacaaf0671 100644 --- a/android/app/src/main/java/app/organicmaps/search/CategoriesAdapter.java +++ b/android/app/src/main/java/app/organicmaps/search/CategoriesAdapter.java @@ -110,10 +110,7 @@ class CategoriesAdapter extends RecyclerView.Adapter Date: Sun, 29 Dec 2024 20:47:42 +0000 Subject: [PATCH 37/49] replace drawables using theme query to use light/dark variants Signed-off-by: Harry Bond --- .../car/screens/CategoriesScreen.java | 16 ++++++++-------- .../maplayer/traffic/widget/TrafficButton.java | 8 ++++---- .../routing/RoutingBottomMenuController.java | 2 +- .../main/res/drawable-night/button_accent.xml | 2 +- .../drawable-night/button_accent_internal.xml | 6 +++--- .../src/main/res/layout-land/layout_nav_top.xml | 4 ++-- .../main/res/layout/current_location_marker.xml | 2 +- .../src/main/res/layout/elevation_profile.xml | 4 ++-- .../res/layout/elevation_profile_internal.xml | 8 ++++---- .../src/main/res/layout/floating_marker_view.xml | 2 +- .../app/src/main/res/layout/layout_nav_top.xml | 4 ++-- .../src/main/res/values-night/themes-base.xml | 12 ------------ android/app/src/main/res/values-night/themes.xml | 4 ++-- android/app/src/main/res/values/styles.xml | 4 ++-- android/app/src/main/res/values/themes-attrs.xml | 11 ----------- android/app/src/main/res/values/themes-base.xml | 14 -------------- 16 files changed, 33 insertions(+), 70 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/car/screens/CategoriesScreen.java b/android/app/src/main/java/app/organicmaps/car/screens/CategoriesScreen.java index 7598bfbf0c..a15fd8e90a 100644 --- a/android/app/src/main/java/app/organicmaps/car/screens/CategoriesScreen.java +++ b/android/app/src/main/java/app/organicmaps/car/screens/CategoriesScreen.java @@ -30,15 +30,15 @@ public class CategoriesScreen extends BaseMapScreen private record CategoryData(@StringRes int nameResId, @DrawableRes int iconResId, @DrawableRes int iconNightResId) { } - + //TODO: previously handled theme by itself, but now icons are dynamic so not needed. private static final List CATEGORIES = Arrays.asList( - new CategoryData(R.string.category_fuel, R.drawable.ic_category_fuel, R.drawable.ic_category_fuel_night), - new CategoryData(R.string.category_parking, R.drawable.ic_category_parking, R.drawable.ic_category_parking_night), - new CategoryData(R.string.category_eat, R.drawable.ic_category_eat, R.drawable.ic_category_eat_night), - new CategoryData(R.string.category_food, R.drawable.ic_category_food, R.drawable.ic_category_food_night), - new CategoryData(R.string.category_hotel, R.drawable.ic_category_hotel, R.drawable.ic_category_hotel_night), - new CategoryData(R.string.category_toilet, R.drawable.ic_category_toilet, R.drawable.ic_category_toilet_night), - new CategoryData(R.string.category_rv, R.drawable.ic_category_rv, R.drawable.ic_category_rv_night) + new CategoryData(R.string.category_fuel, R.drawable.ic_category_fuel, R.drawable.ic_category_fuel), + new CategoryData(R.string.category_parking, R.drawable.ic_category_parking, R.drawable.ic_category_parking), + new CategoryData(R.string.category_eat, R.drawable.ic_category_eat, R.drawable.ic_category_eat), + new CategoryData(R.string.category_food, R.drawable.ic_category_food, R.drawable.ic_category_food), + new CategoryData(R.string.category_hotel, R.drawable.ic_category_hotel, R.drawable.ic_category_hotel), + new CategoryData(R.string.category_toilet, R.drawable.ic_category_toilet, R.drawable.ic_category_toilet), + new CategoryData(R.string.category_rv, R.drawable.ic_category_rv, R.drawable.ic_category_rv) ); private final int MAX_CATEGORIES_SIZE; diff --git a/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java b/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java index 7d254867c0..5b1b0f339f 100644 --- a/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java +++ b/android/app/src/main/java/app/organicmaps/maplayer/traffic/widget/TrafficButton.java @@ -39,14 +39,14 @@ public class TrafficButton { Context context = trafficBtn.getContext(); Resources res = context.getResources(); - final int animResId = ThemeUtils.getResource(context, R.attr.trafficLoadingAnimation); + final int animResId = R.drawable.anim_traffic_loading; return (AnimationDrawable) Objects.requireNonNull(ResourcesCompat.getDrawable(res, animResId, context.getTheme())); } void turnOff() { stopWaitingAnimation(); -// Don't set theme programatically - use an xml with a night variant instead. +// Don't set theme programatically - use an xml with a night variant instead. Also convert to svg. // mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_on_night // : R.drawable.ic_traffic_on); } @@ -54,7 +54,7 @@ public class TrafficButton void turnOn() { stopWaitingAnimation(); -// Don't set theme programatically - use an xml with a night variant instead. +// Don't set theme programatically - use an xml with a night variant instead. Also convert to svg. // mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_on_night // : R.drawable.ic_traffic_on); } @@ -62,7 +62,7 @@ public class TrafficButton void markAsOutdated() { stopWaitingAnimation(); -// Don't set theme programatically - use an xml with a night variant instead. +// Don't set theme programatically - use an xml with a night variant instead. Also convert to svg. // mButton.setImageResource(ThemeUtils.isNightTheme(mButton.getContext()) ? R.drawable.ic_traffic_outdated_night // : R.drawable.ic_traffic_outdated); } diff --git a/android/app/src/main/java/app/organicmaps/routing/RoutingBottomMenuController.java b/android/app/src/main/java/app/organicmaps/routing/RoutingBottomMenuController.java index e9745a52b5..a15a423cce 100644 --- a/android/app/src/main/java/app/organicmaps/routing/RoutingBottomMenuController.java +++ b/android/app/src/main/java/app/organicmaps/routing/RoutingBottomMenuController.java @@ -146,7 +146,7 @@ final class RoutingBottomMenuController implements View.OnClickListener mActionIcon = mActionButton.findViewById(R.id.iv__icon); UiUtils.hide(mAltitudeChartFrame, mActionFrame); mListener = listener; - int dividerRes = ThemeUtils.getResource(mContext, R.attr.transitStepDivider); + int dividerRes = R.drawable.dot_divider; Drawable dividerDrawable = ContextCompat.getDrawable(mContext, dividerRes); Resources res = mContext.getResources(); mTransitViewDecorator = new DotDividerItemDecoration(dividerDrawable, res.getDimensionPixelSize(R.dimen.margin_base), diff --git a/android/app/src/main/res/drawable-night/button_accent.xml b/android/app/src/main/res/drawable-night/button_accent.xml index 192a6af3ec..102a72b2a8 100644 --- a/android/app/src/main/res/drawable-night/button_accent.xml +++ b/android/app/src/main/res/drawable-night/button_accent.xml @@ -3,5 +3,5 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:color="?attr/colorBtnHighlight"> - + diff --git a/android/app/src/main/res/drawable-night/button_accent_internal.xml b/android/app/src/main/res/drawable-night/button_accent_internal.xml index 67c7755d24..d2aa33222d 100644 --- a/android/app/src/main/res/drawable-night/button_accent_internal.xml +++ b/android/app/src/main/res/drawable-night/button_accent_internal.xml @@ -1,9 +1,9 @@ - - - + diff --git a/android/app/src/main/res/layout-land/layout_nav_top.xml b/android/app/src/main/res/layout-land/layout_nav_top.xml index 3ed8acfe81..c6cc284af4 100644 --- a/android/app/src/main/res/layout-land/layout_nav_top.xml +++ b/android/app/src/main/res/layout-land/layout_nav_top.xml @@ -48,7 +48,7 @@ android:layout_height="wrap_content" android:layout_margin="@dimen/margin_half" android:orientation="vertical" - android:background="?navNextTurnFrame" + android:background="@drawable/bg_nav_next_turn" android:elevation="@dimen/nav_elevation"> diff --git a/android/app/src/main/res/layout/current_location_marker.xml b/android/app/src/main/res/layout/current_location_marker.xml index 50ec2a1c59..7741c329b3 100644 --- a/android/app/src/main/res/layout/current_location_marker.xml +++ b/android/app/src/main/res/layout/current_location_marker.xml @@ -11,7 +11,7 @@ android:id="@+id/label" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:background="?elevationProfileYourLocationPinBg" + android:background="@drawable/bg_your_location_pin" android:ellipsize="end" android:paddingStart="@dimen/margin_quarter" android:paddingEnd="@dimen/margin_quarter" diff --git a/android/app/src/main/res/layout/elevation_profile.xml b/android/app/src/main/res/layout/elevation_profile.xml index e8caa071ef..59623905aa 100644 --- a/android/app/src/main/res/layout/elevation_profile.xml +++ b/android/app/src/main/res/layout/elevation_profile.xml @@ -23,7 +23,7 @@ android:layout_marginStart="@dimen/margin_half" android:layout_marginTop="@dimen/margin_quarter" android:layout_marginEnd="@dimen/margin_base_plus" - android:background="?altitudeBg" + android:background="@drawable/bg_altitude" android:paddingStart="@dimen/margin_quarter_plus" android:paddingTop="@dimen/margin_eighth" android:paddingEnd="@dimen/margin_quarter_plus" @@ -39,7 +39,7 @@ android:layout_marginStart="@dimen/margin_half" android:layout_marginEnd="@dimen/margin_base_plus" android:layout_marginBottom="@dimen/margin_base_plus" - android:background="?altitudeBg" + android:background="@drawable/bg_altitude" android:paddingStart="@dimen/margin_quarter_plus" android:paddingTop="@dimen/margin_eighth" android:paddingEnd="@dimen/margin_quarter_plus" diff --git a/android/app/src/main/res/layout/elevation_profile_internal.xml b/android/app/src/main/res/layout/elevation_profile_internal.xml index 564b3ade8f..993fafc75b 100644 --- a/android/app/src/main/res/layout/elevation_profile_internal.xml +++ b/android/app/src/main/res/layout/elevation_profile_internal.xml @@ -43,7 +43,7 @@ android:layout_height="match_parent" android:layout_marginEnd="@dimen/margin_quarter" android:layout_weight="1" - android:background="?elevationProfilePropertyBg" + android:background="@drawable/bg_rounded_rect" android:gravity="center_horizontal" android:orientation="vertical" android:padding="@dimen/margin_quarter_plus"> @@ -73,7 +73,7 @@ android:layout_height="match_parent" android:layout_marginEnd="@dimen/margin_quarter" android:layout_weight="1" - android:background="?elevationProfilePropertyBg" + android:background="@drawable/bg_rounded_rect" android:gravity="center_horizontal" android:orientation="vertical" android:padding="@dimen/margin_quarter_plus"> @@ -103,7 +103,7 @@ android:layout_height="match_parent" android:layout_marginEnd="@dimen/margin_quarter" android:layout_weight="1" - android:background="?elevationProfilePropertyBg" + android:background="@drawable/bg_rounded_rect" android:gravity="center_horizontal" android:orientation="vertical" android:padding="@dimen/margin_quarter_plus"> @@ -132,7 +132,7 @@ android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" - android:background="?elevationProfilePropertyBg" + android:background="@drawable/bg_rounded_rect" android:gravity="center_horizontal" android:orientation="vertical" android:padding="@dimen/margin_quarter_plus"> diff --git a/android/app/src/main/res/layout/floating_marker_view.xml b/android/app/src/main/res/layout/floating_marker_view.xml index 6cee6ebd65..169678c9aa 100644 --- a/android/app/src/main/res/layout/floating_marker_view.xml +++ b/android/app/src/main/res/layout/floating_marker_view.xml @@ -38,7 +38,7 @@ android:layout_marginTop="@dimen/margin_half" android:layout_marginBottom="@dimen/margin_half" android:layout_toEndOf="@id/floating_triangle" - android:background="?elevationProfileSelectedPointBg" + android:background="@drawable/bg_point_desc" android:elevation="@dimen/margin_eighth" android:maxWidth="@dimen/dialog_min_height" android:padding="@dimen/margin_quarter_plus" diff --git a/android/app/src/main/res/layout/layout_nav_top.xml b/android/app/src/main/res/layout/layout_nav_top.xml index 93ea3b9771..a3adf0d6d9 100644 --- a/android/app/src/main/res/layout/layout_nav_top.xml +++ b/android/app/src/main/res/layout/layout_nav_top.xml @@ -48,7 +48,7 @@ android:layout_height="wrap_content" android:layout_margin="@dimen/margin_half" android:orientation="vertical" - android:background="?navNextTurnFrame" + android:background="@drawable/bg_nav_next_turn" android:elevation="@dimen/nav_elevation"> diff --git a/android/app/src/main/res/values-night/themes-base.xml b/android/app/src/main/res/values-night/themes-base.xml index 11d4d6eb76..2716dc5779 100644 --- a/android/app/src/main/res/values-night/themes-base.xml +++ b/android/app/src/main/res/values-night/themes-base.xml @@ -46,18 +46,14 @@ @color/bg_cards_night @color/bg_window_night - @drawable/bg_nav_next_turn_night - @drawable/bg_nav_next_next_turn_night @color/base_accent_night @color/nav_lane_arrow_active_night @color/nav_lane_arrow_inactive_night - @drawable/button_night @color/button_text_night @color/button_text_disabled_night @color/base_accent_night - @drawable/button_accent_night @color/button_accent_text_night @@ -71,9 +67,7 @@ @color/bg_menu_night - @drawable/ic_menu_location_pending_night @drawable/anim_spinner_pending - @drawable/anim_traffic_loading_night @style/MwmTheme.NavButtonsRect @style/MwmTheme.NavButtonsRound @@ -85,11 +79,9 @@ @color/routing_button_tint @color/bg_primary_dark_night - @drawable/list_divider_night @color/white_4 @color/white_4 - @drawable/dot_divider_night @color/accent_color_selector_night @style/TextAppearance @style/TextAppearance.Small @@ -109,12 +101,8 @@ @style/TextAppearance.MdcTypographyStyles.Caption @style/TextAppearance.MdcTypographyStyles.Overline @color/driving_options_bg_black - @drawable/bg_rounded_rect_night @color/white_secondary - @drawable/bg_altitude_night @color/white_54 - @drawable/bg_your_location_pin_night - @drawable/bg_point_desc_night @drawable/ic_triangle_night @drawable/ic_triangle_elevation_night @color/elevation_profile_dark diff --git a/android/app/src/main/res/values-night/themes.xml b/android/app/src/main/res/values-night/themes.xml index 237a0c34f4..d489133669 100644 --- a/android/app/src/main/res/values-night/themes.xml +++ b/android/app/src/main/res/values-night/themes.xml @@ -33,11 +33,11 @@ diff --git a/android/app/src/main/res/values/themes-attrs.xml b/android/app/src/main/res/values/themes-attrs.xml index d8ee76d584..27b5c7bdb0 100644 --- a/android/app/src/main/res/values/themes-attrs.xml +++ b/android/app/src/main/res/values/themes-attrs.xml @@ -18,16 +18,12 @@ - - - - @@ -35,9 +31,7 @@ - - @@ -50,7 +44,6 @@ - @@ -66,12 +59,8 @@ - - - - diff --git a/android/app/src/main/res/values/themes-base.xml b/android/app/src/main/res/values/themes-base.xml index 6ae504024b..955a55ae4b 100644 --- a/android/app/src/main/res/values/themes-base.xml +++ b/android/app/src/main/res/values/themes-base.xml @@ -44,18 +44,14 @@ @color/bg_cards ?panel - @drawable/bg_nav_next_turn - @drawable/bg_nav_next_next_turn @color/base_accent @color/nav_lane_arrow_active_light @color/nav_lane_arrow_inactive_light - @drawable/button @color/button_text @color/button_text_disabled @color/base_accent - @drawable/button_accent @color/button_text_accent @@ -69,9 +65,7 @@ @color/bg_menu - @drawable/ic_menu_location_pending @drawable/anim_spinner_pending - @drawable/anim_traffic_loading @style/MwmTheme.NavButtonsRect @style/MwmTheme.NavButtonsRound @@ -83,14 +77,10 @@ @color/routing_button_tint @color/bg_primary_dark - @style/PreferenceThemeOverlay.v14.Material - @drawable/list_divider - @color/black_4 @color/black_4 - @drawable/dot_divider @drawable/ic_layers_outdoors_active @drawable/ic_layers_traffic_active @drawable/ic_layers_subway_active @@ -122,12 +112,8 @@ @style/TextAppearance.MdcTypographyStyles.Caption @style/TextAppearance.MdcTypographyStyles.Overline @color/light_green - @drawable/bg_rounded_rect @color/black_secondary - @drawable/bg_altitude @color/black_54 - @drawable/bg_your_location_pin - @drawable/bg_point_desc @drawable/ic_triangle @drawable/ic_triangle_elevation @color/elevation_profile -- 2.45.3 From c953ffd70ad4cd10e736a1f0b99673d1df66db94 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 21:43:24 +0000 Subject: [PATCH 38/49] remove unused thememode code Signed-off-by: Harry Bond --- .../settings/SettingsPrefsFragment.java | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java index 816385f861..2dbe566b60 100644 --- a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java +++ b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java @@ -404,10 +404,6 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La return true; ThemeSwitcher.INSTANCE.restart(false); - - ThemeMode mode = ThemeMode.getInstance(requireContext().getApplicationContext(), themeName); - CharSequence summary = pref.getEntries()[mode.ordinal()]; - pref.setSummary(summary); return true; }); } @@ -505,31 +501,6 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La getSettingsActivity().onBackPressed(); } - enum ThemeMode - { - FOLLOW_SYSTEM(R.string.theme_follow_system), - DEFAULT(R.string.theme_default), - NIGHT(R.string.theme_night); - - private final int mModeStringId; - - ThemeMode(@StringRes int modeStringId) - { - mModeStringId = modeStringId; - } - - @NonNull - public static ThemeMode getInstance(@NonNull Context context, @NonNull String src) - { - for (ThemeMode each : values()) - { - if (context.getResources().getString(each.mModeStringId).equals(src)) - return each; - } - return FOLLOW_SYSTEM; - } - } - public enum SpeedCameraMode { AUTO, -- 2.45.3 From 2ab8eb336fb6e1ef504f7f54aeaca28375adfa23 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Sun, 29 Dec 2024 22:05:11 +0000 Subject: [PATCH 39/49] fix settings background colour not being set Signed-off-by: Harry Bond --- android/app/src/main/AndroidManifest.xml | 3 ++- android/app/src/main/res/values/themes-attrs.xml | 2 +- android/app/src/main/res/values/themes.xml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 1fc509c3b3..672c27fdda 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -393,7 +393,8 @@ android:configChanges="uiMode|orientation|screenLayout|screenSize" android:screenOrientation="fullUser" android:label="@string/settings" - android:parentActivityName="app.organicmaps.MwmActivity" /> + android:parentActivityName="app.organicmaps.MwmActivity" + android:theme="@style/MwmTheme.CardBg"/> - + diff --git a/android/app/src/main/res/values/themes.xml b/android/app/src/main/res/values/themes.xml index 69f325eab5..72ce003c8a 100644 --- a/android/app/src/main/res/values/themes.xml +++ b/android/app/src/main/res/values/themes.xml @@ -22,7 +22,7 @@