2013-12-16 7 views
8

ビューを定義しましたが、それはRelativeLayoutに拡張されました。レイアウトxmlファイルでidが指定された子を抽出したいと思います。findViewByIdカスタムビューで子ビューを見つけようとする

HeaderView.javaで:

1 package com.example.test; 
    2 
    3 public class HeaderView extends RelativeLayout { 
    4       
    5  public HeaderView(Context context, AttributeSet attrs) { 
    6   this(context, attrs, 0);   
    7 
    8   TypedArray arr = context.obtainStyledAttributes(attrs, R.styleable.HeaderView, 0, 0); 
    9 
10   int headerId = 0; 
11   int containerId = 0;    
12       
13   // find attributes 
14   if (arr != null) { 
15    if (arr.hasValue(R.styleable.HeaderView_headerview_header)) { 
16     headerId = arr.getResourceId(R.styleable.HeaderView_headerview_header, 0); 
17    } 
18    if (arr.hasValue(R.styleable.HeaderView_headerview_container)) { 
19     containerId = arr.getResourceId(R.styleable.HeaderView_headerview_container, 0); 
20    } 
21    arr.recycle(); 
22   } 
23 
24   Log.d("test", String.format("headerId: %s, containerId %s", headerId, containerId)); 
25   // headerId: 2131296260, containerId 2131296259 
26   
27   // here: mHeaderContainer is null 
28   mHeaderContainer = (RelativeLayout) findViewById(headerId); 
29   mContentViewContainer = (RelativeLayout) findViewById(containerId); 
30  } 
31 } 

私はheadview_attrs.xmlにその属性を定義した:

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

    <declare-styleable name="HeaderView"> 
     <attr name="headerview_header" format="reference" /> 
     <attr name="headerview_container" format="reference" /> 
    </declare-styleable> 

</resources> 

私はactivity_headerview.xmlで、レイアウトxmlファイルで、このビューを使用します。ここでは

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:test="http://schemas.android.com/apk/res/com.example.test" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <com.example.test.HeaderView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     test:headerview_container="@+id/headerview_content" 
     test:headerview_header="@+id/headerview_header" > 

     <RelativeLayout 
      android:id="@+id/headerview_header" 
      android:layout_width="match_parent" 
      android:layout_height="30dp" > 
     </RelativeLayout> 

     <RelativeLayout 
      android:id="@+id/headerview_content" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" > 
     </RelativeLayout> 
    </com.example.test.HeaderView> 

</RelativeLayout> 

問題は:HeaderView.java, line 28, 29, mHeaderContainermContentViewContainerはnullです。

それは、activity_headerview.xmlでいるように見えるそのID RelativeLayoutheaderview_header、そのIDですheaderview_contentHeaderViewの子ではないRelativeLayoutです。

私は間違っていましたか?どんな助けも素晴らしいでしょう!

答えて

15

カスタムビューを作成すると、子ビューがビューに関連付けられていません。 コードをonFinishInflate()メソッドに移動しようとしています。このメソッドは、すべてのレイアウトが拡張された後にLayoutInflaterによって呼び出されます。

+0

ご協力いただきありがとうございます。 – srain

関連する問題