setonclicklistener不工作就可以了,我如何選擇此複選框的處理自定義複選框上setonclicklistener方法不檢查不工作
public void startQuizClick(View v) {
count++;
HashMap<String, String> h1 = questionlist.get(k);
question.setText(h1.get("question_text"));
val = Integer.parseInt(h1.get("total_options"));
for (int i = 0; i < Integer.parseInt(h1.get("total_options")); i++)
{
HashMap<String, String> h2 = optionlist.get(i);
// cb is custom checkbox
cb = new CheckBox(this);
cb.setId(i);
cb.setEnabled(true);
cb.setTextColor(getResources().getColor(R.color.textColor));
cb.setText(h2.get("option_text" + i));
cb.setTextSize(14);
//linear layout
linearLay1.addView(cb);
}
你試過setOnCheckedChangeListener(); –
嘗試* setOnCheckedChangedListener *。 –
我試試這個也不行:) :( –