为什么这个Android视图没有垂直填满屏幕?

时间:2010-02-28 11:40:04

标签: android views

拥有此XML视图:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:id="@+id/myScrollLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <ScrollView
        android:id="@+id/widget29"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <ListView
            android:id="@+id/lstView1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
        </ListView>
    </ScrollView>
</LinearLayout>

alt text http://img528.imageshack.us/img528/3603/ss3v.jpg

为什么我的ListView只显示第一项并且没有填满屏幕?

1 个答案:

答案 0 :(得分:2)

不要将ListView放在ScrollView内。 ListView已经知道如何滚动。