ไม่ใช่คำตอบที่ให้ถูกต้อง
คุณสามารถกำหนดรูปแบบโดยทางโปรแกรม
คำตอบสั้น ๆ คือดูที่http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/5.1.1_r1/android/content/Context.java#435
คำตอบที่ยาว ต่อไปนี้เป็นตัวอย่างข้อมูลของฉันเพื่อตั้งค่าสไตล์ที่กำหนดเองตามมุมมองของคุณ:
1) สร้างสไตล์ในไฟล์ styles.xml ของคุณ
<style name="MyStyle">
<item name="customTextColor">#39445B</item>
<item name="customDividerColor">#8D5AA8</item>
</style>
อย่าลืมกำหนดแอตทริบิวต์ที่กำหนดเองของคุณในไฟล์ attrs.xml
ไฟล์ attrsl.xml ของฉัน:
<declare-styleable name="CustomWidget">
<attr name="customTextColor" format="color" />
<attr name="customDividerColor" format="color" />
</declare-styleable>
แจ้งให้ทราบว่าคุณสามารถใช้ชื่อใด ๆ สำหรับสไตล์ของคุณ (CustomWidget ของฉัน)
ตอนนี้ให้ตั้งค่าสไตล์วิดเจ็ตโดยทางโปรแกรมนี่คือวิดเจ็ตง่ายๆของฉัน:
public class StyleableWidget extends LinearLayout {
private final StyleLoader styleLoader = new StyleLoader();
private TextView textView;
private View divider;
public StyleableWidget(Context context) {
super(context);
init();
}
private void init() {
inflate(getContext(), R.layout.widget_styleable, this);
textView = (TextView) findViewById(R.id.text_view);
divider = findViewById(R.id.divider);
setOrientation(VERTICAL);
}
protected void apply(StyleLoader.StyleAttrs styleAttrs) {
textView.setTextColor(styleAttrs.textColor);
divider.setBackgroundColor(styleAttrs.dividerColor);
}
public void setStyle(@StyleRes int style) {
apply(styleLoader.load(getContext(), style));
}
}
รูปแบบ:
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:layout_gravity="center"
android:text="@string/styleble_title" />
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"/>
</merge>
และการใช้คลาส StyleLoader ในที่สุด
public class StyleLoader {
public StyleLoader() {
}
public static class StyleAttrs {
public int textColor;
public int dividerColor;
}
public StyleAttrs load(Context context, @StyleRes int styleResId) {
final TypedArray styledAttributes = context.obtainStyledAttributes(styleResId, R.styleable.CustomWidget);
return load(styledAttributes);
}
@NonNull
private StyleAttrs load(TypedArray styledAttributes) {
StyleAttrs styleAttrs = new StyleAttrs();
try {
styleAttrs.textColor = styledAttributes.getColor(R.styleable.CustomWidget_customTextColor, 0);
styleAttrs.dividerColor = styledAttributes.getColor(R.styleable.CustomWidget_customDividerColor, 0);
} finally {
styledAttributes.recycle();
}
return styleAttrs;
}
}
คุณสามารถดูตัวอย่างการทำงานได้อย่างสมบูรณ์ที่https://github.com/Defuera/SetStylableProgramatically