1. ホーム
  2. android

[解決済み] 方法 カスタムウィジェットのテーマ(スタイル)項目を定義する

2023-04-18 04:55:36

質問

アプリケーション全体で広く使用されているコントロールのカスタムウィジェットを書きました。 ウィジェットクラスは ImageButton から派生し、いくつかの簡単な方法でそれを拡張しています。ウィジェットが使用されるときに適用できるスタイルを定義しましたが、テーマを通じてこれを設定することを希望します。 で R.styleable のようなウィジェットスタイル属性があります。 imageButtonStyletextViewStyle . 私が書いたカスタムウィジェットのためにそのようなものを作成する方法はありますか?

どのように解決するのですか?

はい、ひとつだけ方法があります。

ウィジェットの属性の宣言があるとします ( attrs.xml ):

<declare-styleable name="CustomImageButton">
    <attr name="customAttr" format="string"/>
</declare-styleable>

スタイル参照に使用する属性を宣言する( 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>

この属性は、ウィジェットのコンストラクタの 3 番目の引数として使用します ( 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 ); // see below
        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の命名規則を使用するのがよいでしょう。