0

我尝试让 ScrollView 像 ListView 一样工作。所以每一行都将是一个动态添加的 TextView。但程序崩溃。我在 LinearLayout 中有一个 ScrollView。我做错了什么?谢谢。

这是我的代码

                        scroll = (ScrollView)findViewById(R.id.scrollView1);
                    layout = (LinearLayout) findViewById(R.id.LinearLayout1);
                    layout.setBackgroundColor(Color.TRANSPARENT);
                    TextView[] tx = new TextView[10];
                    for (int i = 0; i < 10; i++) {
                        tx[i] = new TextView(HelloWorldActivity.this);
                        tx[i].setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
                    tx[i].setText("This is the textviewNo" + i);
                    layout.addView(tx[i]);
                    }

                    scroll.addView(layout);

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
android:orientation="vertical" >

<TextView
    android:id="@+id/timeflag"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textSize="50sp" 
    android:gravity="center"/>



<Button
    android:id="@+id/pause"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/timeflag"
    android:layout_marginTop="37dp"
    android:text="Start" />


<LinearLayout
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/pause"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

    </ScrollView>

</LinearLayout>

</RelativeLayout>
4

3 回答 3

2

一个 scrollView 只能有一个孩子。如果您尝试向滚动视图添加超过 1 个孩子,那么它将崩溃。您应该在滚动视图中拥有 LinearLayout,然后将 textViews 动态添加到线性布局中。

于 2012-06-11T17:32:14.317 回答
1

您正在尝试将其添加LinearLayout1为自己孩子的孩子(成为您自己的祖父,这是一个令人困惑的概念)。

像这样改变你的XML:

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/pause"
    >

    <LinearLayout
        android:id="@+id/LinearLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

    </LinearLayout>

</ScrollView>
于 2012-06-11T17:34:29.970 回答
0

您不能将视图添加到滚动视图。您只能将它们添加到视图组,例如线性或相对布局。

目前尚不清楚您要实现的目标,但是为此使用列表视图有什么问题?您可以在列表视图上设置最大高度。或者你可以试试 wdziemia 的建议

于 2012-06-11T17:34:37.393 回答