12

我创建了一个简单的自定义视图,其中包含一个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

4

5 回答 5

35

您可以添加android:text到您声明的 syleable。但一定不要重新声明它。

<declare-styleable name="CustomEditText">
    <attr name="android:text" />
</declare-styleable>

然后从样式中获取此值,就像使用索引为的任何其他属性一样R.styleable.CustomEditText_android_text

CharSequence text = typedArray.getText(R.styleable.CustomEditText_android_text);
于 2017-06-16T11:05:45.683 回答
0

您可以像这样从自定义视图访问 attrs:

class CustomView @JvmOverloads constructor(
    context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0,
) : ConstraintLayout(context, attrs, defStyleAttr) {

    private val text = attrs?.getAttributeValue(
        "http://schemas.android.com/apk/res/android",
        "text"
    )

    private val scaleType = ImageView.ScaleType.values().getOrNull(
        attrs?.getAttributeIntValue(
            "http://schemas.android.com/apk/res/android",
            "scaleType",
            -1
        ) ?: -1
    )

    private val adjustViewBounds = attrs?.getAttributeBooleanValue(
        "http://schemas.android.com/apk/res/android",
        "adjustViewBounds",
        false
    )

    private val verticalGapRes = attrs?.getAttributeResourceValue(
        "http://schemas.android.com/apk/res-auto",
        "flow_verticalGap",
        R.dimen.default_res
    )
}

在 XML 中:

<com.example.testcustomview.CustomView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:scaleType="centerCrop"
    android:text="Hello World!"
    app:flow_verticalGap="@dimen/default_res"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
于 2022-01-04T11:08:53.563 回答
0

我认为这是不可能的,因为您的 customview 扩展了relativeLayout并且它没有此属性。如果直接从EditText或 TextView扩展,则可以访问 android:text 或其他属性。

于 2017-06-16T09:02:06.080 回答
0

我认为你不能那样做。在 xml 中为您的 edittext 添加一个 id,如果您想检索 editText 的值,只需使用:

edittext.getText().toString()
于 2017-06-16T08:25:19.173 回答
-1

您可以使用类似的布局来构建它

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<EditText
    android:id="@+id/edittext"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:text="My Custom View" />
</RelativeLayout>

您的 customview 类将是这样的

public class CustomEditText extends RelativeLayout {
    LayoutInflater mInflater;

    public CustomView(Context context) {
        super(context);
        mInflater = LayoutInflater.from(context);
        init();

    }

    public CustomView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        mInflater = LayoutInflater.from(context);
        init();
    }

    public CustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        mInflater = LayoutInflater.from(context);
        init();
    }

    // Here you can access your edittext text
    public void init() {
        View v = mInflater.inflate(R.layout.custom_view, this, true);
        EditText et = (TextView) v.findViewById(R.id.edittext);
        et.setText(" Custom RelativeLayout");
    }
}
于 2017-06-16T09:05:27.030 回答