部分ScrollView - XML Android

时间:2012-09-27 00:57:51

标签: android android-layout scrollview

我的布局中有很多行,我需要部分滚动视图。我想要修复linearlayout和第一个tablerow以及其余的Scrollview。现在,我有这段代码:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android">

    <LinearLayout>

        <TextView
        />
    </LinearLayout>

    <TableRow
            >

        <TextView
            />

        <TextView
            />

        <TextView
            />
    </TableRow>
</TableLayout>

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

<TableLayout
        >

    <TableRow
            >
        <TextView
                />
        <TextView
                />
        <TextView
                />
    </TableRow>

    <TableRow
            >
        <TextView
                />
        <TextView
                />
        <TextView
                />
    </TableRow>
</TableLayout>
</ScrollView>

但不编译。我应该如何使用scrollview来实现我的目标?

谢谢:)

1 个答案:

答案 0 :(得分:2)

  • 至少,您需要在每个XML元素中定义android:layout_heightandroid:layout_width才能进行编译。
  • 布局只能包含1个父元素。您需要将整个事物包裹在LinearLayout或任何符合您需求的布局中。