我正在尝试扩展android.widget.Button,并为我的自定义窗口小部件添加了一个可样式属性,该窗口小部件应该包含对res / values / strings.xml中的值的引用。
<resources>
<attr name="infoText" format="reference" />
<declare-styleable name="FooButton">
<attr name="infoText" />
</declare-styleable>
</resources
在我的布局中,我有类似的东西:
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal">
<com.example.FooButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/fooButton"
infoText="@string/fooButtonInfoText" />
</LinearText>
我的res / values / strings.xml如下所示:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="fooButtonInfoText">BAR</string>
</resources>
在我的自定义FooButton中提取属性值如下所示:
TypedArray typedArray = context.obtainStyledAttributes(attributeSet, R.styleable.FooButton);
Integer infoTextId = typedArray.getResourceId(R.styleable.FooButton_infoText, 0);
if (infoTextId > 0) {
infoText = context.getResources().getString(infoTextId);
}
typedArray.recycle();
我已经实现了这三个构造函数:
public FooButton(Context context) {
super(context);
}
public FooButton(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
setInfoText(context, attributeSet);
}
public FooButton(Context context, AttributeSet attributeSet, int defStyle) {
super(context, attributeSet, defStyle);
setInfoText(context, attributeSet);
}
每次声明FooButton时,都会调用 FooButton.setInfoText(context,attributeSet)方法。
我正在解决这个问题太长时间并阅读了几十个Stackoverflow问题......为什么这不起作用?
答案 0 :(得分:1)
您必须为自定义属性声明命名空间。它应该是这样的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/auto"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal">
<com.example.FooButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/fooButton"
app:infoText="@string/fooButtonInfoText" />
</LinearText>