其中TableLayout
有 9Buttons
个 3x3 格式。如何使用 TableLayout 的 id(不是 Button Id)以编程方式访问这些按钮上的文本?
问问题
13386 次
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 的每个孩子TableLayout
,TableRow
也更好地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 回答