チェックされたチェックボックスの値を配列リストに保存してリストに表示するにはどうすればよいですか。/..sayCheckbox1="Apple"......これまでのところこれがあります
public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
if (checkBox1.isChecked()) {
//my problem is below here: I can't seem to add the value of it not the id and store it in list
pubsList.add(pub3);
pub3=Integer.toString(checkBox1.getSelectedItem());
}
}