I have been googling and searching to resolve this error for some time and I can`t seem to find out why and how to solve it.
I`m using a customAdapter to fill in my listview. I inflate the xml describing my listItem. I make viewHolder object and load in my textview using findViewById. After that i want to set the text of that textview but it findViewbyid returns a null value. So automaticcally resolving into a nullpointerexception.
Adapter:
/** 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" />
Any help is appreciated!
Search for the views in the
convertView
that you inflate(and not in the currentActivity
layout like you currently do):You are inflating the layout, but not using it while fetching it's views
Do this:
try replacing this:
where
listitemview
is yourxml
in which you defined yourImageView
andTextView
s..hope this helps you
change the line
which is below * RETURNS NULL DURING DEBUGGING * by
TextView initialization is wrong