Sim, há uma maneira:
Suponha que você tenha uma declaração de atributos para seu widget (in attrs.xml
):
<declare-styleable name="CustomImageButton">
<attr name="customAttr" format="string"/>
</declare-styleable>
Declare um atributo que você usará como referência de estilo (in attrs.xml
):
<declare-styleable name="CustomTheme">
<attr name="customImageButtonStyle" format="reference"/>
</declare-styleable>
Declare um conjunto de valores de atributo padrão para o widget (in styles.xml
):
<style name="Widget.ImageButton.Custom" parent="android:style/Widget.ImageButton">
<item name="customAttr">some value</item>
</style>
Declare um tema personalizado (in themes.xml
):
<style name="Theme.Custom" parent="@android:style/Theme">
<item name="customImageButtonStyle">@style/Widget.ImageButton.Custom</item>
</style>
Use este atributo como o terceiro argumento no construtor de seu widget (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();
}
}
Agora você deve aplicar Theme.Custom
a todas as atividades que usa CustomImageButton
(em AndroidManifest.xml):
<activity android:name=".MyActivity" android:theme="@style/Theme.Custom"/>
Isso é tudo. Agora CustomImageButton
tenta carregar os valores de customImageButtonStyle
atributo padrão do atributo do tema atual. Se nenhum atributo for encontrado no tema ou no valor do atributo, @null
o argumento final obtainStyledAttributes
será usado: Widget.ImageButton.Custom
neste caso.
Você pode alterar os nomes de todas as instâncias e todos os arquivos (exceto AndroidManifest.xml
), mas seria melhor usar a convenção de nomenclatura do Android.