在自定义视图上设置内部edittext xml属性

时间:2016-02-08 22:58:06

标签: android xml

我创建了一个包含EditTextTextView的复合视图...我想让任何使用我的视图的开发人员都可以执行以下操作

<MyCustomView
            android:id="@+id/password"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:setInputType="textPassword"/>

密切关注该xml的最后一行。 如何将该属性连接到EditText

内的MyCustomView

PD:我已经在Attrs.xml上创建了一个并试图这样做

<declare-styleable name="ValidateEditText">
<flag name="none" value="0x00000000" />
            <flag name="text" value="0x00000001" />
            <flag name="textCapCharacters" value="0x00001000" />
            <flag name="textCapWords" value="0x00002000" />
            <flag name="textCapSentences" value="0x00004000" />
            <flag name="textAutoCorrect" value="0x00008000" /> ...

这不起作用。由于某种原因,EditText.setContentType无法正常工作

我alredy设置其他自定义属性,我的问题是如何设置这个特定的“InputType”似乎没有工作。

protected void init(Context context, AttributeSet attrs) {

    if (attrs != null) {
        TypedArray typedArray;
        typedArray = context.obtainStyledAttributes(attrs, R.styleable.ValidateEditText);
        try {
            mHint = typedArray.getString(R.styleable.ValidateEditText_hint);

            mInputType = typedArray.getInt(R.styleable.ValidateEditText_inputType, EditorInfo.TYPE_CLASS_TEXT);
            mMaxLength = typedArray.getInt(R.styleable.ValidateEditText_maxLength, -1);
            mSingleLine = typedArray.getBoolean(R.styleable.ValidateEditText_singleLine, false);
            mPassword = typedArray.getBoolean(R.styleable.ValidateEditText_password, false);
            mImeOption = typedArray.getInt(R.styleable.ValidateEditText_imeOptions, EditorInfo.IME_ACTION_NEXT);
            mEditable = typedArray.getBoolean(R.styleable.ValidateEditText_editable, true);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            typedArray.recycle();
        }
    }
}

@Override
protected void onFinishInflate() {
    super.onFinishInflate();

    //Initialise views
    mErrorMessage = (TextView) findViewById(R.id.error_msg);
        mEditText = (EditText) findViewById(R.id.edit_text);


        mEditText.setInputType(mInputType); 
    ...
}

1 个答案:

答案 0 :(得分:0)

您可以像这样声明可设置样式的attr:

<declare-styleable name="MyCustomView">
    <attr name="android:inputType"/>
</declare-styleable>

并在您的自定义视图中获取此attr:

int inputType = a.getInt(R.styleable.MyCustomView_android_inputType, EditorInfo.TYPE_NULL);

您可以从here

获得更详细的答案