簡體   English   中英

自定義xml屬性到@layout引用

[英]Custom xml attribute to a @layout reference

我想用自己的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添加以下代碼來做到這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();
    }
    ...
}

從這里你可以充氣headerLayoutLayoutInflater

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM