7

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

4

2 回答 2

20

使用类似的东西,

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);
 }
}
于 2012-07-16T12:54:49.500 回答
6

你可以做的是找到TableLayout使用的实例

TableLayout layout_tbl = (TableLayout) findViewById(R.id.layout_tbl);

然后通过使用getChildCount(),您可以遍历 and 的每个孩子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();
                }
       }
   }
于 2012-07-16T13:18:28.243 回答