From 774fcff407b1b6a721587e052dc29802a6911a59 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Aug 2018 23:39:23 +0200 Subject: Added previously untracked files(s) --- .../java/com/no_name/no_name/Util/ThemeUtil.kt | 35 ++++++++++++---------- app/src/main/res/xml/pref_account.xml | 27 +++++++++++++++++ 2 files changed, 46 insertions(+), 16 deletions(-) create mode 100644 app/src/main/res/xml/pref_account.xml (limited to 'app') diff --git a/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt b/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt index d777281..5125f12 100644 --- a/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt +++ b/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt @@ -1,14 +1,18 @@ -package com.no_name.no_name.Util +package com.no_name.no_name.util import android.content.Context -import com.afollestad.aesthetic.Aesthetic import com.madapps.prefrences.EasyPrefrences -import com.no_name.no_name.R +import com.no_name.no_name.util.ThemeUtil.isDarkTheme -class ThemeUtil(context: Context) { - private val sharedPrefs = EasyPrefrences(context) - - private fun isDarkTheme(): Boolean { +/** + * Get the name of the theme depending on [actionBar] and [isDarkTheme] + */ +object ThemeUtil { + /** + * Checks if the theme saved in sharedPreferences is dark/light + */ + private fun isDarkTheme(context: Context): Boolean { + val sharedPrefs = EasyPrefrences(context) val darkTheme: Boolean? = sharedPrefs.getBoolean("dark_theme_switch") darkTheme?.let { return darkTheme @@ -17,15 +21,14 @@ class ThemeUtil(context: Context) { } } - fun setActivityTheme(ActionBar: Boolean) { - val theme: Int = if (!ActionBar) { - if (isDarkTheme()) R.style.AppTheme_Dark_NoActionBar else R.style.AppTheme_NoActionBar - } else - if (isDarkTheme()) R.style.AppTheme_Dark else R.style.AppTheme - - Aesthetic.config { - activityTheme(R.style.AppTheme_NoActionBar) - isDark(isDarkTheme()) + /** + * Get the name of the theme depending on [actionBar] and [isDarkTheme] + */ + fun getThemeName(context: Context): String { + return if (isDarkTheme(context)) { + "dark" + } else { + "light" } } } \ No newline at end of file diff --git a/app/src/main/res/xml/pref_account.xml b/app/src/main/res/xml/pref_account.xml new file mode 100644 index 0000000..f410996 --- /dev/null +++ b/app/src/main/res/xml/pref_account.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + -- cgit v1.2.3