diff options
author | Marvin Borner | 2018-08-29 23:39:23 +0200 |
---|---|---|
committer | Marvin Borner | 2018-08-29 23:39:23 +0200 |
commit | 774fcff407b1b6a721587e052dc29802a6911a59 (patch) | |
tree | f8bcfdaacb825b945e9322d2fa333f833e458e95 /app/src/main/java/com/no_name | |
parent | f88688213a7777fdb0361c9ddad36b490b90adfe (diff) |
Added previously untracked files(s)
Diffstat (limited to 'app/src/main/java/com/no_name')
-rw-r--r-- | app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt | 35 |
1 files changed, 19 insertions, 16 deletions
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 |