7
TextViewを持つカスタムビューA
があります。私はTextViewのresourceID
を返すメソッドを作った。テキストが定義されていない場合、メソッドはデフォルトで-1を返します。 ビューA
から継承したカスタムビューB
もあります。私のカスタムビューには「hello」というテキストがあります。スーパークラスの属性を取得するメソッドを呼び出すと、代わりに-1が返されます。コードでAndroid:カスタムビューのスーパークラスから属性を取得する方法
私は値を取得することができるよ、それは一種のハック感じている方法の例もあります。
attrs.xml
<declare-styleable name="A">
<attr name="mainText" format="reference" />
</declare-styleable>
<declare-styleable name="B" parent="A">
<attr name="subText" format="reference" />
</declare-styleable>
クラス
protected static final int UNDEFINED = -1;
protected void init(Context context, AttributeSet attrs, int defStyle)
{
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.A, defStyle, 0);
int mainTextId = getMainTextId(a);
a.recycle();
if (mainTextId != UNDEFINED)
{
setMainText(mainTextId);
}
}
protected int getMainTextId(TypedArray a)
{
return a.getResourceId(R.styleable.A_mainText, UNDEFINED);
}
クラスB
protected void init(Context context, AttributeSet attrs, int defStyle)
{
super.init(context, attrs, defStyle);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.B, defStyle, 0);
int mainTextId = getMainTextId(a); // this returns -1 (UNDEFINED)
//this will return the value but feels kind of hacky
//TypedArray b = context.obtainStyledAttributes(attrs, R.styleable.A, defStyle, 0);
//int mainTextId = getMainTextId(b);
int subTextId = getSubTextId(a);
a.recycle();
if (subTextId != UNDEFINED)
{
setSubText(subTextId);
}
}
Iは、Fを有している別の解決策これまでのところ、以下のことを行うことです。私はこれもハッキリだと思う。
<attr name="mainText" format="reference" />
<declare-styleable name="A">
<attr name="mainText" />
</declare-styleable>
<declare-styleable name="B" parent="A">
<attr name="mainText" />
<attr name="subText" format="reference" />
</declare-styleable>
カスタムビューのスーパークラスから属性を取得するにはどうすればよいですか? 私は継承がカスタムビューでどのように機能するかのいずれかの良い例を見つけるように見えることはできません。