mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
69 lines
2.2 KiB
Java
69 lines
2.2 KiB
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.graphics.Color;
|
|
import androidx.annotation.AttrRes;
|
|
import androidx.annotation.ColorInt;
|
|
import androidx.annotation.DrawableRes;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.StyleRes;
|
|
import androidx.appcompat.view.ContextThemeWrapper;
|
|
|
|
import android.util.Log;
|
|
import android.util.TypedValue;
|
|
import android.view.LayoutInflater;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
public class ThemeUtil {
|
|
private static final String TAG = ThemeUtil.class.getSimpleName();
|
|
|
|
public static boolean isDarkTheme(@NonNull Context context) {
|
|
return getAttributeText(context, R.attr.theme_type, "light").equals("dark");
|
|
}
|
|
|
|
@ColorInt
|
|
public static int getThemedColor(@NonNull Context context, @AttrRes int attr) {
|
|
TypedValue typedValue = new TypedValue();
|
|
Resources.Theme theme = context.getTheme();
|
|
|
|
if (theme.resolveAttribute(attr, typedValue, true)) {
|
|
return typedValue.data;
|
|
} else {
|
|
Log.e(TAG, "Couldn't find a color attribute with id: " + attr);
|
|
return Color.RED;
|
|
}
|
|
}
|
|
|
|
@DrawableRes
|
|
public static int getThemedDrawableResId(@NonNull Context context, @AttrRes int attr) {
|
|
TypedValue typedValue = new TypedValue();
|
|
Resources.Theme theme = context.getTheme();
|
|
|
|
if (theme.resolveAttribute(attr, typedValue, true)) {
|
|
return typedValue.resourceId;
|
|
} else {
|
|
Log.e(TAG, "Couldn't find a drawable attribute with id: " + attr);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
public static LayoutInflater getThemedInflater(@NonNull Context context, @NonNull LayoutInflater inflater, @StyleRes int theme) {
|
|
Context contextThemeWrapper = new ContextThemeWrapper(context, theme);
|
|
return inflater.cloneInContext(contextThemeWrapper);
|
|
}
|
|
|
|
private static String getAttributeText(Context context, int attribute, String defaultValue) {
|
|
TypedValue outValue = new TypedValue();
|
|
|
|
if (context.getTheme().resolveAttribute(attribute, outValue, true)) {
|
|
CharSequence charSequence = outValue.coerceToString();
|
|
if (charSequence != null) {
|
|
return charSequence.toString();
|
|
}
|
|
}
|
|
|
|
return defaultValue;
|
|
}
|
|
}
|