如何访问TableLayout中的视图

时间:2012-07-16 12:52:16

标签: android button tablelayout

TableLayout中,有3 {3}格式的Buttons。如何使用TableLayout(不是Button Id)的id以编程方式访问这些按钮上的文本?

2 个答案:

答案 0 :(得分:19)

使用类似的东西,

TableLayout tblLayout = (TableLayout)findViewById(R.id.tableLayout);
TableRow row = (TableRow)tblLayout.getChildAt(0); // Here get row id depending on number of row
Button button = (Button)row.getChildAt(XXX); // get child index on particular row
String buttonText = button.getText().toString();

3x3格式:(了解实际的代码可能不同)

for(int i=0;i<3;i++)
{
 TableRow row = (TableRow)tblLayout.getChildAt(i);
  for(int j=0;j<3;j++){
    Button button = (Button)row.getChildAt(j); // get child index on particular row
    String buttonText = button.getText().toString();
    Log.i("Button index: "+(i+j), buttonText);
 }
}

答案 1 :(得分:6)

您可以做的是使用

找到TableLayout的实例
TableLayout layout_tbl = (TableLayout) findViewById(R.id.layout_tbl);

然后使用getChildCount()您可以遍历TableLayoutTableRow的每个孩子,也最好使用View检查instanceof,这样您就可以得到任何NPE

for (int i = 0; i < layout_tbl.getChildCount(); i++) {
     View parentRow = layout_tbl.getChildAt(i);
     if(parentRow instanceof TableRow){
                for (int j = 0; j < parentRow.getChildCount(); j++){
                   Button button = (Button ) parentRow.getChildAt(j);
                   if(button instanceof Button){
                      String text = button.getText().toString();
                }
       }
   }