Aşağıdaki gibi stillerde ayarlanan vurgu rengi programlı olarak nasıl getirilebilir?
<item name="android:colorAccent">@color/material_green_500</item>
Yanıtlar:
Mevcut temadan şu şekilde getirebilirsiniz:
private int fetchAccentColor() {
TypedValue typedValue = new TypedValue();
TypedArray a = mContext.obtainStyledAttributes(typedValue.data, new int[] { R.attr.colorAccent });
int color = a.getColor(0, 0);
a.recycle();
return color;
}
Bu benim için de çalıştı:
public static int getThemeAccentColor (final Context context) {
final TypedValue value = new TypedValue ();
context.getTheme ().resolveAttribute (R.attr.colorAccent, value, true);
return value.data;
}
private static int getThemeAccentColor(Context context) {
int colorAttr;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
colorAttr = android.R.attr.colorAccent;
} else {
//Get colorAccent defined for AppCompat
colorAttr = context.getResources().getIdentifier("colorAccent", "attr", context.getPackageName());
}
TypedValue outValue = new TypedValue();
context.getTheme().resolveAttribute(colorAttr, outValue, true);
return outValue.data;
}
Mevcut temadan renkleri almak için utils sınıfında statik bir yöntemim var. Çoğu zaman colorPrimary, colorPrimaryDark ve accentColor şeklindedir, ancak çok daha fazlasını elde edebilirsiniz.
@ColorInt
public static int getThemeColor
(
@NonNull final Context context,
@AttrRes final int attributeColor
)
{
final TypedValue value = new TypedValue();
context.getTheme ().resolveAttribute (attributeColor, value, true);
return value.data;
}
İşte bu konudaki görüşüm:
public static String getThemeColorInHex(@NonNull Context context, @NonNull String colorName, @AttrRes int attribute) {
TypedValue outValue = new TypedValue();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
context.getTheme().resolveAttribute(attribute, outValue, true);
} else {
// get color defined for AppCompat
int appCompatAttribute = context.getResources().getIdentifier(colorName, "attr", context.getPackageName());
context.getTheme().resolveAttribute(appCompatAttribute, outValue, true);
}
return String.format("#%06X", (0xFFFFFF & outValue.data));
}
Kullanım:
String windowBackgroundHex = getThemeColorInHex(this, "windowBackground", android.R.attr.windowBackground);
String primaryColorHex = getThemeColorInHex(this, "colorPrimary", R.attr.colorPrimary);
String.format()
Bir altılı renk dizeye negatif tamsayı değeri dönüştürmek için nasıl açıklamak için yardımcı olur.
Kotlin çözümü:
context.obtainStyledAttributes(TypedValue().data, intArrayOf(R.attr.colorAccent)).let {
Log.d("AppLog", "color:${it.getColor(0, 0).toHexString()}")
it.recycle()
}
Tek satır olmasını istiyorsanız, MaterialColors bu durumda kullanılabilir
MaterialColors.getColor(context, R.attr.colorAccent,context.getResources().getColor(R.color.fall_back_color));
İlk argüman bağlamdır, ikinci argüman almanız gereken özelliktir ve üçüncü argüman, özniteliğin eksik olması veya öznitelik rengini alırken bir şeylerin ters gitmesi durumunda geri dönüş rengidir.