我正在尝试使用TableLayout#getChildAt(i).getChildAt(j)
打印TableRows中TextView的值。
当我尝试使用上面的方法记录它时,logcat会抱怨,说它是一个View对象,并且它没有我尝试使用的方法(getText()
)。
TableRows中的唯一视图是TextViews。
// List<TextView> textViewBoxes...
private void createViews() {
...
tblLayout = new TableLayout(this);
tblRow01 = new TableRow(this);
...
for (int i = 0; i < 99; i++) {
TextView text = new TextView(this);
text.setText("Player " + i);
textViewBoxes.add(text);
}
tblRow01.addView(textViewBoxes.get(0));
...
tblLayout.addView(tblRow01);
...
// Print the contents of the first row's first TextView
Log.d(TAG, ("row1_tv1: " +
tblLayout.getChildAt(0).getChildAt(0).getText().toString));
...
}
答案 0 :(得分:3)
你尝试过这样的事吗?
TableRow row = (TableRow)tblLayout.getChildAt(0);
TextView textView = (TextView)row.getChildAt(XXX);
// blah blah textView.getText();
您也可以在一行中执行此操作,但有时看起来很丑:
// wtf?
((TextView)((TableRow)tblLayout.getChildAt(0)).getChildAt(XXX)).getText();
无论如何......你在这里做的是将视图转换为你想要的特定类型。您可以毫无问题地执行此操作,因为您完全确定每个TableLayout's
孩子都是TableRow
,并且您知道XXX位置上的TableRow's
个孩子是TextView
。< / p>