From 9d6a1fb1ba13ff2e03a24d05d9f53a856e1b1e57 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 19 Dec 2024 18:37:16 +0000 Subject: [PATCH] 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 @@ - -