各行にテキストビューとチェックボックスで構成されるカスタムリストビューがあります。(1)リスト内の項目をクリックすると、他のアクティビティに移動します。(2)チェックボックスがオンの場合、textviewの値が配列に追加されます。//チェックされていない場合、値は配列から削除されます。最初の要件は私と一緒に正常に実行されますが、2番目の要件は機能しません。これは私のコードです:
public class DataAdapter extends ArrayAdapter<ItemInList> {
public ArrayList<ItemInList> list;
public Activity context;
public LayoutInflater inflater;
public static ArrayList<String> array=new ArrayList<String>();
ItemInList element=new ItemInList();
public DataAdapter(Activity context,int x,ArrayList<ItemInList> list) {
super(context, 0, list);
this.context = context;
this.list = list;
this.inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
static class ViewHolder {
protected TextView name,Description;
protected CheckBox checkbox;
}
public int getCount() {
// TODO Auto-generated method stub
return list.size();
}
@Override
public ItemInList getItem(int position) {
// TODO Auto-generated method stub
return list.get(position);
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
if (convertView == null) {
holder = new ViewHolder();
convertView = inflater.inflate(R.layout.row1, null);
holder.name = (TextView) convertView.findViewById(R.id.food_title);
holder.name.setTextColor(Color.BLACK);
holder.Description = (TextView) convertView.findViewById(R.id.food_description);
holder.Description.setTextColor(Color.GRAY);
holder.checkbox = (CheckBox) convertView.findViewById(R.id.add_food_item);
holder.checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
element = (ItemInList) holder.checkbox.getTag();
element.setSelected(buttonView.isChecked());
if(element.isSelected())
{
array.add(element.getName());
}
else
{
array.remove(position);
}
}
});
convertView.setTag(holder);
} else {
holder=(ViewHolder)convertView.getTag();
ItemInList bean = (ItemInList) list.get(position);
holder.name.setText( bean.getName());
holder.Description.setText( bean.getDescription()+"");
holder.checkbox.setChecked( bean.isSelected());
return convertView;
}
holder.name.setText(list.get(position).getName());
holder.Description.setText(list.get(position).getDescription()+"");
holder.checkbox.setChecked(list.get(position).isSelected());
return convertView;
}
エラー:
null pointer exception..
at DataAdapter$1.onCheckedChanged(DataAdapter.java:92)
E/AndroidRuntime(543): at android.widget.CompoundButton.setChecked(CompoundButton.java:125)
E/AndroidRuntime(543): at sehaty.com.DataAdapter$1.onCheckedChanged(DataAdapter.java:92)
E/AndroidRuntime(543): at android.widget.CompoundButton.setChecked(CompoundButton.java:125)
at android.widget.CompoundButton.performClick(CompoundButton.java:99)
どんな助けでもありがたいです