0

一段时间以来,我一直在谷歌搜索和搜索以解决此错误,但我似乎无法找出原因以及如何解决它。

我正在使用 customAdapter 来填写我的列表视图。我膨胀了描述我的 listItem 的 xml。我使用 findViewById 制作 viewHolder 对象并加载到我的文本视图中。之后我想设置该文本视图的文本,但它 findViewbyid 返回一个空值。因此自动解析为空指针异常。

适配器:

/** CLASS : Custom Adapter for the listview */
private class CustomAdapter extends ArrayAdapter<Track>{
    private List<Track> items;
    private Context mContext;
    private int layoutResourceId;       
    private ViewHolder mHolder;

    public CustomAdapter(Context context, int layoutId, List<Track> objects) {
        super(context, layoutId, objects);
        layoutResourceId=layoutId;
        items = objects;
        mContext=context;       
    }       

    public View getView(int position, View convertView, ViewGroup parent) {
         if(convertView == null){
             LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
             convertView = inflater.inflate(layoutResourceId, parent, false);
             mHolder = new ViewHolder();
             ****** RETURNS NULL DURING DEBUGGING ******
             mHolder.textViewCenter = (TextView)findViewById(R.id.textview_list_item_central);
             convertView.setTag(mHolder);
         }else{
             mHolder = (ViewHolder) convertView.getTag();
         }
         Track track = items.get(position);
         ****** ERROR HAPPENS HERE ******
         mHolder.textViewCenter.setText(track.getTrack());
         return convertView;
    }

    class ViewHolder{
        ImageView imageView;
        TextView textViewCenter;
        TextView textViewRight;
    }
}

XML:

?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/imageview_list_albumart_icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="left"
    android:src="@drawable/ic_music" />

<TextView
    android:id="@+id/textview_list_item_central"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_weight="0.5"
    android:text="Center"
    android:textSize="20sp" >
</TextView>

<TextView
    android:id="@+id/textview_list_item_right"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:paddingRight="10dip"
    android:text="Right" />

任何帮助表示赞赏!

4

5 回答 5

7

convertView在您膨胀的视图中搜索(而不是Activity像您当前所做的那样在当前布局中):

 mHolder.textViewCenter = (TextView) 
                convertView.findViewById(R.id.textview_list_item_central);
于 2012-05-22T09:38:44.500 回答
0

您正在夸大布局,但在获取视图时不使用它

做这个:

 mHolder.textViewCenter = (TextView)convertView.findViewById(R.id.textview_list_item_central)
于 2012-05-22T09:39:46.250 回答
0

TextView初始化错误

if(convertView == null){
             LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
             convertView = inflater.inflate(layoutResourceId, parent, false);
             mHolder = new ViewHolder();
             ****** RETURNS NULL DURING DEBUGGING ******
             mHolder.textViewCenter = (TextView) convertView .findViewById(R.id.textview_list_item_central); //Change done
             convertView.setTag(mHolder);
         }else{
             mHolder = (ViewHolder) convertView.getTag();
         }
于 2012-05-22T09:43:01.803 回答
0

尝试替换这个:

convertView = inflater.inflate(R.layout.listitemview, null);  

listitemviewxml在哪里定义你的ImageViews TextView..
希望这对你有帮助

于 2012-05-22T09:53:15.040 回答
0

换行

mHolder.textViewCenter = (TextView)findViewById(R.id.textview_list_item_central);

低于 *调试期间返回 NULL*

mHolder.textViewCenter = (TextView) convertView.findViewById(R.id.textview_list_item_central);
于 2012-05-22T09:53:36.570 回答