2013-03-29 92 views
5

我有一個偏好屏幕(responder_generic.xml)(2.3.3版本)findViewById如下返回null偏好佈局

addPreferencesFromResource(R.xml.responder_generic); 

和我的佈局= preference_header_switch_item_responder看起來如下:

<?xml version="1.0" encoding="utf-8"?> 
<!-- Layout of a header item in PreferenceActivity. --> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="33dp" 
    android:gravity="center_vertical" 
    android:minHeight="33dp" 
    android:id="@+id/preference_header_switch_item_responder" 
    style="?android:attr/listSeparatorTextViewStyle" > 

    <RelativeLayout 
     android:layout_width="0dip" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="5dp" 
     android:layout_weight="1" > 

     <TextView 
      android:id="@+id/title" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:ellipsize="marquee" 
      android:fadingEdge="horizontal" 
      android:singleLine="true" 
      android:text="@string/auto_responder" 
      android:textAppearance="?android:attr/textAppearanceSmall" 
      android:textStyle="bold" /> 

     <TextView 
      android:id="@+id/summary" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@android:id/title" 
      android:ellipsize="end" 
      android:textAppearance="?android:attr/textAppearanceSmall" /> 
    </RelativeLayout> 

    <include layout="@layout/compound_button" /> 

</LinearLayout> 

現在,我有化合物按鈕d分別在layout文件夾和layout/v-14 efined如下:

<?xml version="1.0" encoding="utf-8"?> 
<merge xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > 

<CheckBox 
    android:id="@+id/switchWidget" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center" 
    android:clickable="true" 
    android:focusable="false" 
    android:padding="8dip" 
    android:layout_marginRight="14dip" /> 

</merge> 

<?xml version="1.0" encoding="utf-8"?> 
<merge xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <Switch 
     android:id="@+id/switchWidget" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     android:clickable="true" 
     android:focusable="false" 
     android:padding="8dip" 
     android:layout_marginRight="14dip"/> 

</merge> 

在​​的方法,我想找到使用findViewById(R.id.switchWidget)但它總是返回null,則此複選框/在運行時開關。

任何想法可能是什麼原因?

回答