เราจะดึงชุดสีที่เน้นในสไตล์เช่นด้านล่างโดยใช้โปรแกรมได้อย่างไร
<item name="android:colorAccent">@color/material_green_500</item>
เราจะดึงชุดสีที่เน้นในสไตล์เช่นด้านล่างโดยใช้โปรแกรมได้อย่างไร
<item name="android:colorAccent">@color/material_green_500</item>
คำตอบ:
คุณสามารถดึงมันจากธีมปัจจุบันด้วยวิธีนี้:
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;
}
สิ่งนี้ใช้ได้ผลสำหรับฉันเช่นกัน:
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;
}
สำหรับผู้ที่ใช้ Kotlin
fun Context.themeColor(@AttrRes attrRes: Int): Int {
val typedValue = TypedValue()
theme.resolveAttribute (attrRes, typedValue, true)
return typedValue.data
}
ฉันมีวิธีการคงที่ในคลาส utils เพื่อรับสีจากธีมปัจจุบัน เวลาส่วนใหญ่เป็น colorPrimary, colorPrimaryDark และ accentColor แต่คุณจะได้รับมากกว่านั้น
@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;
}
นี่คือสิ่งที่ฉันทำ:
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));
}
การใช้งาน:
String windowBackgroundHex = getThemeColorInHex(this, "windowBackground", android.R.attr.windowBackground);
String primaryColorHex = getThemeColorInHex(this, "colorPrimary", R.attr.colorPrimary);
String.format()
ช่วยอธิบายวิธีการแปลงค่าจำนวนเต็มเชิงลบเพื่อสตริงสีฐานสิบหก
โซลูชัน Kotlin:
context.obtainStyledAttributes(TypedValue().data, intArrayOf(R.attr.colorAccent)).let {
Log.d("AppLog", "color:${it.getColor(0, 0).toHexString()}")
it.recycle()
}
สามารถใช้ MaterialColors ในกรณีนี้หากคุณต้องการให้เป็นบรรทัดเดียว
MaterialColors.getColor(context, R.attr.colorAccent,context.getResources().getColor(R.color.fall_back_color));
อาร์กิวเมนต์แรกคือบริบทอาร์กิวเมนต์ที่สองคือแอตทริบิวต์ที่คุณต้องได้รับและอาร์กิวเมนต์ที่สามคือสีสำรองในกรณีที่แอตทริบิวต์หายไปหรือมีบางอย่างผิดพลาดขณะรับสีแอตทริบิวต์