在getView 1 个周期后抛出空指针。即列表中的第一个元素返回正常,但它在第二个元素上崩溃。
它说持有人为空。指位holder.textName.setText(station)
。
知道为什么吗?
...
static class StationHolder {
TextView textName;
ImageView imgStationImage;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
StationHolder holder = null;
Typeface tfBoldCon = Typeface.createFromAsset(context.getAssets(),
"Roboto-BoldCondensed.ttf");
Typeface tfCon = Typeface.createFromAsset(context.getAssets(),
"Roboto-Condensed.ttf");
Typeface tfLight = Typeface.createFromAsset(context.getAssets(),
"Roboto-Light.ttf");
if (row == null) {
LayoutInflater inflater = ((Activity) context).getLayoutInflater();
row = inflater.inflate(viewResourceId, parent, false);
holder = new StationHolder();
holder.textName = (TextView) row.findViewById(R.id.station_name);
holder.textName.setTypeface(tfCon);
holder.imgStationImage = (ImageView) row
.findViewById(R.id.station_image);
} else {
holder = (StationHolder) row.getTag();
}
final String station = stations.get(position);
Log.i("", station);
if (station != null) {
holder.textName.setText(station);
}
return row;
}