为什么找不到这个视图?

时间:2013-07-19 20:48:05

标签: android listview view findviewbyid

我有一个带有自定义适配器的列表视图。在列表视图中是具有不同XML布局的不同元素。其中之一是:

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

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

    <antistatic.spinnerwheel.WheelHorizontalView 
        android:id="@+id/wP_pollrate"
        app:visibleItems="4"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"/>

</LinearLayout>

在适配器中我有getView方法,如下所示:

@Override
  public View getView(int position, View convertView, ViewGroup parent) {

    View v = convertView;
    ConfigItem c = configItems.get(position);

    if(c instanceof ConfigFilePicker) {
      if (v == null) {
         LayoutInflater vi = (LayoutInflater)appContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);       
         v = vi.inflate(R.layout.list_row_config_picker, null);
      }      
      TextView topLabel = (TextView) v.findViewById(R.id.tV_list_row_top_label);
      TextView configFileName = (TextView) v.findViewById(R.id.tV_list_row_config);

      topLabel.setText(c.getTopLabel());
      configFileName.setText(((ConfigFilePicker) c).getChoosenFileName());
    }

    else if(c instanceof ConfigPollrate) {
      if (v == null) {
         LayoutInflater vi = (LayoutInflater)appContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);       
         v = vi.inflate(R.layout.list_row_config_pollrate, null);
      }
      TextView topLabel = (TextView) v.findViewById(R.id.tV_list_row_top_label);
      topLabel.setText(c.getTopLabel());      

      /** Setting adapter for picker wheel */
      AbstractWheel wheel = (AbstractWheel) v.findViewById(R.id.wP_wheel);
      ArrayWheelAdapter<String> wheelAdapter =
          new ArrayWheelAdapter<String>(this.appContext, ((ConfigPollrate) c).getValues());

      /** Setting layout and finally the adapter to the view */
      wheelAdapter.setItemResource(R.layout.wheel_text_centered_dark_back);
      wheelAdapter.setItemTextResource(R.id.text);
      wheel.setViewAdapter(pollrateAdapter);

    }

    return v;
  }

如您所见,我正在使用此项目android-spinnerwheel中名为antistatic.spinnerwheel的特殊拣货轮。

问题是这个AbstractWheel wheel = (AbstractWheel) v.findViewById(R.id.wP_wheel);总是会产生一个空指针。这个id被发现了。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

您的列表项视图是循环使用的,因此第2行&gt; x中的convertView不为空,但包含之前在行中充气的布局。因此,如果在开始时创建第一个布局,然后在第二行中创建第一个布局,则会转到else子句,因为布局list_row_config_picker不包含AbstractWheel,所以它会崩溃。 希望你明白我的意思。

您可以删除if (v == null)支票,因此布局将始终充气。