在我的自定义视图上重用标准的android属性

时间:2014-11-03 04:48:04

标签: android android-view android-custom-view

我正在使用以下布局

创建自定义复合视图
<merge xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:orientation="horizontal">

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <EditText
        android:id="@+id/edit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:singleLine="true"/>

</merge>

如您所见,它只是TextViewEditText。我希望能够为我的自定义视图提供转发到TextViewEditText的属性。例如

<codeguru.labelededittext.LabeledEditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:label="@string/label"
    app:hint="@string/hint"/>

我已经找到了如何将这些字符串属性转发给TextViewEditText,具体而言:

    TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.LabeledEditText,
            0, 0);

    try {
        label.setText(a.getString(R.styleable.LabeledEditText_label));
        edit.setHint(a.getString(R.styleable.LabeledEditText_hint));
    } finally {
        a.recycle();
    }

现在我还要设置inputType的{​​{1}}。如果我创建了一个EditText标记,我是否必须使用所有可能的标记值填充它?有没有办法重用<attr name="inputType" format="flag">已声明的值?

1 个答案:

答案 0 :(得分:2)

你可以通过以下方式获得:

   foo = new Buffer("foo");