1

我知道如何为特定类创建自定义属性。您只需使用名称的类名称在 Styleable 中定义它们,就像这样。

<declare-styleable name="MyCustomView">
    <attr name="customAttr1" format="integer" />
    <attr name="customAttr2" format="boolean" />
</declare-styleable>

MyCustomView然后,当我在布局中使用实例时customAttr1customAttr2可以进行设置。很容易。

我现在要做的是LayoutParams在我的 custom 的子级上使用自定义属性,或者更准确地说,在提供我正在使用RecyclerView的各个子类的布局文件的根视图中。RecyclerView.ViewHolder但是,我无法获得传递给我的属性,我不确定为什么不。

这是我的 attrs.xml 文件...

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <declare-styleable name="ScrollableGridLayoutManager.LayoutParams">
        <attr name="cellLayoutMode">
            <enum name="scrollable"                 value="0" />
            <enum name="fixedHorizontal"            value="1" />
            <enum name="fixedVertical"              value="2" />
            <enum name="fixedHorizontalAndVertical" value="3" />
        </attr>
    </declare-styleable>

</resources>

这是我的自定义 LayoutParams 类中读取属性的代码...

public LayoutParams(Context context, AttributeSet attrs){

    super(context, attrs);

    TypedArray styledAttrs = context.obtainStyledAttributes(R.styleable.ScrollableGridLayoutManager_LayoutParams);

    if(styledAttrs.hasValue(R.styleable.ScrollableGridLayoutManager_LayoutParams_cellLayoutMode)){
        int layoutModeOrdinal = styledAttrs.getInt(R.styleable.ScrollableGridLayoutManager_LayoutParams_cellLayoutMode, layoutMode.ordinal());
        layoutMode = LayoutMode.values()[layoutModeOrdinal];
    }

    styledAttrs.recycle();
}

这就是我在我的一个 ViewHolders 的布局中设置它的地方......

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android = "http://schemas.android.com/apk/res/android"
    xmlns:app     = "http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="start|center_vertical"
    android:background="#0000FF"
    app:cellLayoutMode="fixedVertical">

    <TextView
        android:id="@+id/mainTextView"
        android:textColor="#000000"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#FFFF00"
        android:layout_marginStart="20dp" />

</LinearLayout>

然而,我尝试的任何东西似乎都没有进入“hasValue”调用。它总是像未设置一样返回。

注意:我在定义属性时也尝试了所有这些......

<declare-styleable name="LayoutParams">

<declare-styleable name="ScrollableGridLayoutManager_LayoutParams">

<declare-styleable name="ScrollableGridAdapter_LayoutParams">

...但似乎没有一个工作。

那么我做错了什么?您如何定义特定于您的自定义LayoutParams类的属性?

4

1 回答 1

1

在自定义LayoutParams构造函数中,obtainStyledAttributes()调用必须包含AttributeSet传入的值。否则,它只会从 的主题中提取值Context,并且布局 XML 中指定的那些属性值不会包含在返回的 中TypedArray

例如:

TypedArray styledAttrs =
    context.obtainStyledAttributes(attrs, R.styleable.ScrollableGridLayoutManager_LayoutParams);
于 2017-10-14T00:41:01.117 回答