嘿,我正在通过 sqlite 添加复选框,我必须获取有关特定复选框的信息,我如何获取信息或 id?
这是它的示例代码
checkboxLayout21 = (LinearLayout) findViewById(R.id.Textview_layout21);
for (int j=0; j < 12; j++ ){
CheckBox cb1 = new CheckBox(getApplicationContext());
cb1.setText(chkstring1[j]);
cb1.setId(j);
cb1.setTextColor(Color.BLACK);
checkboxLayout21.addView(cb1);