我的 Android 应用程序有问题。我正在尝试创建一个列表视图,其中每行包含一个 textview 和一个 checkedtextview。我已经完成了布局和适配器,它正确显示了所有项目,但我遇到的问题是:我可以完美地检查前 7 个项目(最初可见的项目)但是当我向下滚动以检查其中一个时以下项目(最初不可见的项目)我得到一个空指针异常。我应该怎么办?
适配器代码:
private class myAdapter extends ArrayAdapter<Orders> {
private ArrayList<Orders> items;
public myAdapter(Context context, int resource, ArrayList<Orders> items) {
super(context, resource, items);
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = getLayoutInflater().inflate(R.layout.orderslist_row,
null);
}
Orders o = items.get(position);
CheckedTextView txtSymbol = (CheckedTextView) convertView
.findViewById(R.id.checkedTextView1);
txtSymbol.setText(o.getInstrumentID());
CheckedTextView txtQuantity = (CheckedTextView) convertView
.findViewById(R.id.checkedTextView2);
Double qty = o.getQuantity();
txtQuantity.setText(FormatNumber.Number(qty, 0));
if (o.getStatus().toString().equals("Rejected"))
txtQuantity.setTextColor(Color.RED);
if (o.getStatus().toString().equals("Active"))
txtQuantity.setTextColor(Color.GREEN);
return convertView;
}
}
和 OnItemClickCode:
public void onItemClick(AdapterView<?> adapter, View view, int position,
long id) {
View v = (View)lstOrders.getChildAt(position);
CheckedTextView ctv = (CheckedTextView) v.findViewById(R.id.checkedTextView2);
ctv.toggle();
}