checkbox selectAll \ DeselectAll in tableLayout

时间:2011-08-18 11:29:34

标签: android

我在tablelayout中有路由列表。 CheckBox& TextView动态创建。 我设置了复选框ID。

我想做selectall&取消选择所有。我们如何实施?

我使用编码创建了checkBox。然后如何调用此CheckBox cb = (CheckBox)view.findViewById(R.id.????);

 tl = (TableLayout) findViewById(R.id.dailyDRoute);
    ArrayList<SalesRoutes> routeList = getSalesRoute();
    for (int i = 0; i < routeList.size(); i++) {
        TableRow tr = new TableRow(this);
        CheckBox ch = new CheckBox(this);
        ch.setHeight(1);
        ch.setId(i);
        TextView tv2 = new TextView(this);
        tr.addView(ch);
        tv2.setText(routeList.get(i).getDescription());
        tv2.setTextColor(Color.BLACK);

        tr.addView(tv2); 
        tl.addView(tr);
    }
}


 public void deselectAll(View view){
    // CheckBox cb = (CheckBox)view.findViewById(R.id.);

 }


 public void selectAll(View view){

 }

enter image description here

请帮帮我......

提前致谢..

1 个答案:

答案 0 :(得分:5)

R.id. *是构建过程中生成的整数常量。实际上,您需要将整数id传递给findViewById(与在init块中将我们设置为id的整数相同)。 像这样:

for (int i = 0; i < tl.getChildCount(); i++) {
  CheckBox cb = (CheckBox)view.findViewById(i);
  cb.setChecked(true);
}       

但对我来说这不是很可靠,因为在运行时设置的id可能不是唯一的,我认为这个循环更好:

for (int i = 0; i < tl.getChildCount(); i++) {
  CheckBox cb = (CheckBox)((TableRow)tl.getChildAt(i)).getChildAt(0);
  cb.setChecked(true);
}