您好我制作了包含文本视图(显示错误或建议)和编辑文本(输入)的复合视图
<TextView
android:id="@+id/guidanceOrError"
android:gravity="center"
android:padding="10dp"
android:text="Please input 6 characters and 1 number"
android:layout_marginBottom="10dp"
android:background="@drawable/input_guidance_background"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/inputField"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rectangle_border"
android:padding="@dimen/login_editText_padding"
tools:hint="@string/user_name"/>
</merge>
这是我在活动布局中使用它
<com.ersen.test.widgets.ValidationInputField
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/login_editText_top_margin"
android:hint="@string/password"
android:inputType="textPassword" />
我的问题是忽略了像hint和inputType这样的属性。
这是因为在我的init(AttributeSet attrs)
方法中,我没有得到属性
if(attrs != null){
TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.???);
a.recycle();
}
我的问题是如何使用已存在的属性?我不想重新创建它们
请帮助我,谢谢你的阅读
修改1 我的复合视图扩展了LinearLayout
答案 0 :(得分:1)
猜猜你在谈论CustomView
。
但是你应declare-styleable
attrs.xml
并使用它:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="ValidationInputField">
<attr name="android:hint"/>
<attr name="android:inputType"/>
</declare-styleable>
</resources>
因此,请像这样编辑init
方法:
if(attrs != null){
TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.ValidationInputField);
String hint = a.getString(R.styleable.ValidationInputField_android_hint);
int inputType = a.getInt(R.styleable.ValidationInputField_android_inputType,0);
// set these two values in your EditText programmatically
EditText editText = (EditText) findViewById(R.id.inputField);
editText.setHint(hint);
editText.setInputType(inputType);
a.recycle();
}