Tak, jest jeden sposób:
Załóżmy, że masz deklarację atrybutów swojego widżetu (in attrs.xml
):
<declare-styleable name="CustomImageButton">
<attr name="customAttr" format="string"/>
</declare-styleable>
Zadeklaruj atrybut, którego będziesz używać jako odniesienia do stylu (w attrs.xml
):
<declare-styleable name="CustomTheme">
<attr name="customImageButtonStyle" format="reference"/>
</declare-styleable>
Zadeklaruj zestaw domyślnych wartości atrybutów dla widgetu (in styles.xml
):
<style name="Widget.ImageButton.Custom" parent="android:style/Widget.ImageButton">
<item name="customAttr">some value</item>
</style>
Zadeklaruj motyw niestandardowy (in themes.xml
):
<style name="Theme.Custom" parent="@android:style/Theme">
<item name="customImageButtonStyle">@style/Widget.ImageButton.Custom</item>
</style>
Użyj tego atrybutu jako trzeciego argumentu w konstruktorze widgetu (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();
}
}
Teraz musisz zastosować się Theme.Custom
do wszystkich działań, które używają CustomImageButton
(w AndroidManifest.xml):
<activity android:name=".MyActivity" android:theme="@style/Theme.Custom"/>
To wszystko. Teraz CustomImageButton
próbuje załadować domyślne wartości customImageButtonStyle
atrybutów z atrybutu bieżącego motywu. Jeśli w motywie nie zostanie znaleziony taki atrybut lub wartość atrybutu to, zostanie użyty @null
ostatni argument do obtainStyledAttributes
: Widget.ImageButton.Custom
w tym przypadku.
Możesz zmienić nazwy wszystkich instancji i wszystkich plików (z wyjątkiem AndroidManifest.xml
), ale lepiej byłoby użyć konwencji nazewnictwa Androida.