Evet, bir yol var:
Widget'ınız (in attrs.xml
) için bir öznitelik beyanınız olduğunu varsayalım :
<declare-styleable name="CustomImageButton">
<attr name="customAttr" format="string"/>
</declare-styleable>
Bir stil referansı (in attrs.xml
) için kullanacağınız bir özniteliği bildirin :
<declare-styleable name="CustomTheme">
<attr name="customImageButtonStyle" format="reference"/>
</declare-styleable>
Widget (in styles.xml
) için bir dizi varsayılan öznitelik değeri bildirin :
<style name="Widget.ImageButton.Custom" parent="android:style/Widget.ImageButton">
<item name="customAttr">some value</item>
</style>
Özel bir tema bildirin (içinde themes.xml
):
<style name="Theme.Custom" parent="@android:style/Theme">
<item name="customImageButtonStyle">@style/Widget.ImageButton.Custom</item>
</style>
Bu özniteliği, pencere aracınızın yapıcısındaki (in CustomImageButton.java
) üçüncü argüman olarak kullanın :
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();
}
}
Şimdi Theme.Custom
kullanan tüm etkinliklere başvurmanız gerekir CustomImageButton
(AndroidManifest.xml'de):
<activity android:name=".MyActivity" android:theme="@style/Theme.Custom"/>
Bu kadar. Şimdi CustomImageButton
varsayılan öznitelik değerlerini şuradan yüklemeye çalışıyor:customImageButtonStyle
, mevcut temanın özniteliğinden . Temada veya özniteliğin değerinde böyle bir öznitelik bulunmazsa , bu durumda kullanılacak @null
son bağımsız değişken obtainStyledAttributes
kullanılır: Widget.ImageButton.Custom
bu durumda.
Tüm örneklerin ve tüm dosyaların (hariç AndroidManifest.xml
) adlarını değiştirebilirsiniz, ancak Android adlandırma kuralını kullanmak daha iyi olacaktır.