自定义xml属性到@layout引用



我想用自己的xml属性制作一个自定义视图。我想指定一个标题布局,将在我的自定义xml视图中膨胀,像这样:

<com.example.MyCustomWidget
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:headerLayout="@layout/my_header"
   />

这是可能的,我如何从TypedArray获得布局资源?

所以最后我想这样做:

class MyCustomWidget extends FrameLayout { 

public ProfileTabLayout(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.ProfileTabLayout);
    int headerLayout = a.getLayout(R.styleable.MyCustomView_headerLayout, 0); // There is no such method
   a.recycle();
   LayoutInflater.from(context)
        .inflate(headerLayout, this, true);
  }
}

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="MyCustomWidget">
    <attr name="headerLayout" format="reference" />
  </declare-styleable>
</resources>

首先您必须创建您的自定义字段。您可以通过将以下代码添加到res/values/attrs.xml

来实现此目的
<declare-styleable name="MyCustomView">
    <attr name="headerLayout" format="reference" />
</declare-styleable>

然后在你的自定义视图中,你可以在构造函数

中获得这个值
public MyCustomView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    ...
    TypedArray a = context.getTheme().obtainStyledAttributes(
            attrs,
            R.styleable.MyCustomView,
            defStyle, 0
    );
    try {
        int headerLayout = a.getResourceId(R.styleable.MyCustomView_headerLayout, 0);
    } finally {
        a.recycle();
    }
    ...
}

从这里开始你可以用LayoutInflater充气headerLayout

最新更新