web-dev-qa-db-fra.com

Obtenir une valeur de couleur par programme lorsqu'il s'agit d'une référence (thème)

Considère ceci:

styles.xml

<style name="BlueTheme" parent="@Android:style/Theme.Black.NoTitleBar">
    <item name="theme_color">@color/theme_color_blue</item>
</style>

attrs.xml

<attr name="theme_color" format="reference" />

color.xml

<color name="theme_color_blue">#ff0071d3</color>

Donc, le couleur du thème est référencé par le thème. Comment puis-je obtenir le theme_color (référence) par programme? Normalement, j'utiliserais getResources().getColor() mais pas dans ce cas car c'est référencé!

84
Seraphim's

Cela devrait faire le travail:

TypedValue typedValue = new TypedValue();
Theme theme = context.getTheme();
theme.resolveAttribute(R.attr.theme_color, typedValue, true);
@ColorInt int color = typedValue.data;

Assurez-vous également d'appliquer le thème à votre activité avant d'appeler ce code. Soit utiliser:

Android:theme="@style/Theme.BlueTheme"

dans votre manifeste ou appel (avant d'appeler setContentView(int)):

setTheme(R.style.Theme_BlueTheme)

dans onCreate().

Je l'ai testé avec vos valeurs et cela a parfaitement fonctionné.

192
Emanuel Moecklin

Cela a fonctionné pour moi:

int[] attrs = {R.attr.my_attribute};
TypedArray ta = context.obtainStyledAttributes(attrs);
int color = ta.getResourceId(0, Android.R.color.black);
ta.recycle();

si vous voulez en extraire la chaîne hexagonale:

Integer.toHexString(color)
18
Angel Solis

Pour ajouter à la réponse acceptée, si vous utilisez kotlin.

fun Context.getColorFromAttr(
    @AttrRes attrColor: Int,
    typedValue: TypedValue = TypedValue(),
    resolveRefs: Boolean = true
): Int {
    theme.resolveAttribute(attrColor, typedValue, resolveRefs)
    return typedValue.data
}

et puis dans votre activité, vous pouvez faire

textView.setTextColor(getColorFromAttr(R.attr.color))

17
Bri6ko

Si vous voulez obtenir plusieurs couleurs, vous pouvez utiliser:

int[] attrs = {R.attr.customAttr, Android.R.attr.textColorSecondary, 
        Android.R.attr.textColorPrimaryInverse};
Resources.Theme theme = context.getTheme();
TypedArray ta = theme.obtainStyledAttributes(attrs);

int[] colors = new int[attrs.length];
for (int i = 0; i < attrs.length; i++) {
    colors[i] = ta.getColor(i, 0);
}

ta.recycle();
2
Nicolas

Voici une méthode utilitaire concise Java) qui utilise plusieurs attributs et renvoie un tableau d'entiers colorés. :)

/**
 * @param context    Pass the activity context, not the application context
 * @param attrFields The attribute references to be resolved
 * @return int array of color values
 */
@ColorInt
static int[] getColorsFromAttrs(Context context, @AttrRes int... attrFields) {
    int length = attrFields.length;
    Resources.Theme theme = context.getTheme();
    TypedValue typedValue = new TypedValue();

    @ColorInt int[] colorValues = new int[length];

    for (int i = 0; i < length; ++i) {
        @AttrRes int attr = attrFields[i];
        theme.resolveAttribute(attr, typedValue, true);
        colorValues[i] = typedValue.data;
    }

    return colorValues;
}
0
varun