这段代码导致我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);
这是我的活动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>
感谢您的帮助。
答案 0 :(得分:7)
很难说,但我猜这个
tableRow.addView(tableRow);
可能是原因。将视图添加到自身可能是无限递归的原因,因此StackOverflowError
答案 1 :(得分:0)
String testString = "test";
tableLayout = (TableLayout) findViewById(R.id.tableLayout1);
TextView textInRow = new TextView(this)
TableRow tableRow = new TableRow(this);
textInRow.setText(testString);
tableRow.addView(textInRow);
tableLayout.addView(tableRow);
改为使用它。