ใช่มีทางเดียว:
สมมติว่าคุณมีการประกาศแอตทริบิวต์สำหรับวิดเจ็ตของคุณ (ในattrs.xml
):
<declare-styleable name="CustomImageButton">
<attr name="customAttr" format="string"/>
</declare-styleable>
ประกาศแอตทริบิวต์ที่คุณจะใช้สำหรับการอ้างอิงสไตล์ (ในattrs.xml
):
<declare-styleable name="CustomTheme">
<attr name="customImageButtonStyle" format="reference"/>
</declare-styleable>
ประกาศชุดของค่าแอตทริบิวต์เริ่มต้นสำหรับวิดเจ็ต (ในstyles.xml
):
<style name="Widget.ImageButton.Custom" parent="android:style/Widget.ImageButton">
<item name="customAttr">some value</item>
</style>
ประกาศธีมที่กำหนดเอง (ในthemes.xml
):
<style name="Theme.Custom" parent="@android:style/Theme">
<item name="customImageButtonStyle">@style/Widget.ImageButton.Custom</item>
</style>
ใช้แอ็ตทริบิวต์นี้เป็นอาร์กิวเมนต์ที่สามในคอนสตรัคเตอร์ของวิดเจ็ต (ในCustomImageButton.java
):
public class CustomImageButton extends ImageButton {
private String customAttr;
public CustomImageButton( Context context ) {
this( context, null );
}
public CustomImageButton( Context context, AttributeSet attrs ) {
this( context, attrs, R.attr.customImageButtonStyle );
}
public CustomImageButton( Context context, AttributeSet attrs,
int defStyle ) {
super( context, attrs, defStyle );
final TypedArray array = context.obtainStyledAttributes( attrs,
R.styleable.CustomImageButton, defStyle,
R.style.Widget_ImageButton_Custom );
this.customAttr =
array.getString( R.styleable.CustomImageButton_customAttr, "" );
array.recycle();
}
}
ตอนนี้คุณต้องสมัครTheme.Custom
กับกิจกรรมทั้งหมดที่ใช้CustomImageButton
(ใน AndroidManifest.xml):
<activity android:name=".MyActivity" android:theme="@style/Theme.Custom"/>
นั่นคือทั้งหมด ตอนนี้CustomImageButton
พยายามโหลดค่าแอตทริบิวต์เริ่มต้นจากcustomImageButtonStyle
แอตทริบิวต์ของธีมปัจจุบัน หากไม่พบแอตทริบิวต์ดังกล่าวในธีมหรือค่าของแอตทริบิวต์จะมีการใช้@null
อาร์กิวเมนต์สุดท้ายobtainStyledAttributes
: Widget.ImageButton.Custom
ในกรณีนี้
คุณสามารถเปลี่ยนชื่อของอินสแตนซ์ทั้งหมดและไฟล์ทั้งหมดได้ (ยกเว้นAndroidManifest.xml
) แต่จะดีกว่าถ้าใช้หลักการตั้งชื่อ Android