Да, есть один способ:
Предположим, у вас есть объявление атрибутов для вашего виджета (in 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>
Объявите набор значений атрибутов по умолчанию для виджета (in styles.xml
):
<style name="Widget.ImageButton.Custom" parent="android:style/Widget.ImageButton">
<item name="customAttr">some value</item>
</style>
Объявить настраиваемую тему (in 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.