我正在尝试使用TableLayout#getChildAt(i).getChildAt(j)打印TableRows内部的TextViews的值。

当我尝试使用上述方法记录日志时,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));

    ...
}

最佳答案

你尝试过这样的事情吗?

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

07-27 20:55