2017-05-05 00:55:34 +02:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.util;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2020-06-18 11:04:53 +02:00
|
|
|
import android.content.res.TypedArray;
|
2017-05-05 00:55:34 +02:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.PorterDuff;
|
|
|
|
import android.graphics.drawable.Drawable;
|
2020-12-23 19:13:37 +01:00
|
|
|
import android.util.TypedValue;
|
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
import androidx.annotation.AttrRes;
|
|
|
|
import androidx.annotation.ColorInt;
|
2019-02-12 19:22:37 +01:00
|
|
|
import androidx.annotation.NonNull;
|
2018-12-17 15:25:35 +01:00
|
|
|
import androidx.appcompat.app.AppCompatDelegate;
|
2017-05-05 00:55:34 +02:00
|
|
|
|
2017-07-28 04:03:45 +02:00
|
|
|
/**
|
|
|
|
* Provides runtime compatibility to obtain theme information and re-theme views, especially where
|
|
|
|
* the ability to do so is not supported in resource files.
|
|
|
|
*/
|
2017-05-05 00:55:34 +02:00
|
|
|
public class ThemeUtils {
|
2019-03-11 17:25:11 +01:00
|
|
|
|
2018-04-22 17:20:01 +02:00
|
|
|
public static final String APP_THEME_DEFAULT = ThemeUtils.THEME_NIGHT;
|
|
|
|
|
2019-02-12 19:22:37 +01:00
|
|
|
private static final String THEME_NIGHT = "night";
|
|
|
|
private static final String THEME_DAY = "day";
|
|
|
|
private static final String THEME_BLACK = "black";
|
|
|
|
private static final String THEME_AUTO = "auto";
|
2019-10-03 19:58:21 +02:00
|
|
|
private static final String THEME_SYSTEM = "auto_system";
|
2018-01-20 13:39:01 +01:00
|
|
|
|
2019-10-03 19:58:21 +02:00
|
|
|
@ColorInt
|
|
|
|
public static int getColor(@NonNull Context context, @AttrRes int attribute) {
|
2017-05-05 00:55:34 +02:00
|
|
|
TypedValue value = new TypedValue();
|
|
|
|
if (context.getTheme().resolveAttribute(attribute, value, true)) {
|
|
|
|
return value.data;
|
|
|
|
} else {
|
|
|
|
return Color.BLACK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-18 11:04:53 +02:00
|
|
|
public static int getDimension(@NonNull Context context, @AttrRes int attribute) {
|
|
|
|
TypedArray array = context.obtainStyledAttributes(new int[] { attribute });
|
|
|
|
int dimen = array.getDimensionPixelSize(0, -1);
|
|
|
|
array.recycle();
|
|
|
|
return dimen;
|
|
|
|
}
|
|
|
|
|
2017-05-05 00:55:34 +02:00
|
|
|
public static void setDrawableTint(Context context, Drawable drawable, @AttrRes int attribute) {
|
|
|
|
drawable.setColorFilter(getColor(context, attribute), PorterDuff.Mode.SRC_IN);
|
|
|
|
}
|
2018-01-20 13:39:01 +01:00
|
|
|
|
2019-10-03 19:58:21 +02:00
|
|
|
public static void setAppNightMode(String flavor) {
|
2018-01-20 13:39:01 +01:00
|
|
|
switch (flavor) {
|
2018-02-03 23:26:53 +01:00
|
|
|
default:
|
|
|
|
case THEME_NIGHT:
|
2019-10-03 19:58:21 +02:00
|
|
|
case THEME_BLACK:
|
2019-03-07 21:33:29 +01:00
|
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
|
2018-01-20 13:39:01 +01:00
|
|
|
break;
|
2018-02-03 23:26:53 +01:00
|
|
|
case THEME_DAY:
|
2019-03-07 21:33:29 +01:00
|
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
|
2018-01-20 13:39:01 +01:00
|
|
|
break;
|
2018-02-03 23:26:53 +01:00
|
|
|
case THEME_AUTO:
|
2019-10-03 19:58:21 +02:00
|
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_AUTO_TIME);
|
2018-02-03 23:26:53 +01:00
|
|
|
break;
|
2019-03-07 21:33:29 +01:00
|
|
|
case THEME_SYSTEM:
|
|
|
|
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM);
|
|
|
|
break;
|
2018-01-20 13:39:01 +01:00
|
|
|
}
|
|
|
|
}
|
2017-05-05 00:55:34 +02:00
|
|
|
}
|