Так, є один спосіб:
Припустимо, у вас є декларація атрибутів для вашого віджету (у attrs.xml
):
<declare-styleable name="CustomImageButton">
<attr name="customAttr" format="string"/>
</declare-styleable>
Заявіть атрибут, який ви будете використовувати для посилання на стиль (in 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>
Використовуйте цей атрибут як третій аргумент у конструкторі вашого віджета (in 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.