这段代码导致我 java.lang.StackOverflowError: stack size 8MB 错误,知道为什么吗?我正在尝试在 NestedScrollView 中包含 TableLayout 和 TableRow。

String testString = "test";
tableLayout = (TableLayout) findViewById(R.id.tableLayout1);
TextView textInRow = new TextView(this)
TableRow tableRow = new TableRow(this);
textInRow.setText(testString);
tableRow.addView(tableRow);
tableLayout.addView(tableRow);

这是我的 Activity xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="eu.martinbednar.mayak.TripList"
    tools:showIn="@layout/activity_scrolling"
    android:id="@+id/table">

    <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="10dip"
        android:isScrollContainer="true">
    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    </TableRow>
    </TableLayout>


</android.support.v4.widget.NestedScrollView>

谢谢你的帮助。

最佳答案

很难说,但我想这个

tableRow.addView(tableRow);

可能是原因。将 View 添加到自身可能是无限递归的原因,因此 StackOverflowError

关于java.lang.StackOverflowError : stack size 8MB in Views,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42609182/

10-09 04:04