gpt4 book ai didi

Android自定义复合 View ,如何复用属性?

转载 作者:行者123 更新时间:2023-11-30 01:23:14 26 4
gpt4 key购买 nike

你好,我制作了这个复合 View ,其中包含一个 TextView (用于显示错误或建议)和一个编辑文本(用于输入)

    <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>

这是我在 Activity 布局中使用它

 <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我的复合 View 扩展了 LinearLayout

最佳答案

我猜你说的是 CustomView

但是你应该在 attrs.xmldeclare-styleable 并像这样使用它:

<?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();
}

关于Android自定义复合 View ,如何复用属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36790035/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com