我创建了一个简单的自定义视图,其中包含一个RelativeLayout
和一个EditText
:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/edt_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
我还添加了一些自定义属性res/values/attrs.xml
并在自定义视图构造函数中检索这些属性,一切正常。
现在,我想EditText
在我的自定义视图中检索默认属性,例如我想获取android:text
在我的自定义视图中获取属性。
我的自定义视图类(简化):
public class CustomEditText extends RelativeLayout {
private int panCount;
public CustomEditText(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs,
R.styleable.CustomEditText, 0, 0);
try {
this.panCount = typedArray.getInt(R.styleable.CustomEditText_panCount, 16);
} finally {
typedArray.recycle();
}
}
}
如何在不重新声明 text 属性的情况下做到这一点res/values/attrs.xml
?