自定义xml属性到@layout引用 [英] Custom xml attribute to a @layout reference

查看:202
本文介绍了自定义xml属性到@layout引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用自己的xml属性创建自定义视图.我想指定将在我的自定义xml视图中放大的标题布局,如下所示:

I would like to make a custom view with own xml attributes. I would like to specify a header layout that will be inflated in my custom xml view, something like this:

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

有可能吗?如何从TypedArray获取布局资源?

Is that possible and how to i get the layout resource from TypedArray?

所以最后我想做这样的事情:

So at the end I would like to do something like this:

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

First you have to make your custom field. Yo do this by adding code below to res/values/attrs.xml

<declare-styleable name="MyCustomView">
    <attr name="headerLayout" format="reference" />
</declare-styleable>

然后在您的自定义视图中,您可以在构造函数中获取此值

Then in your custom view you can get this value in constructor

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

From here on you can inflate headerLayout with LayoutInflater

这篇关于自定义xml属性到@layout引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆