3

我有一个ListView嵌套在HorizontalScrollView这样的内部:

<HorizontalScrollView android:layout_width="fill_parent"
                      android:layout_height="fill_parent"
                      android:fillViewport="true">
    <ListView android:id="@android:id/list"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content" />
</HorizontalScrollView>

ArrayAdapter'sgetView()方法中,我动态添加TextViewsImageViews. ListActivity基础数据在'onCreate()方法中设置一次。如果一个列表项的宽度超过可用空间,ScrollView则不会滚动,除非它是第一项并且视图仅滚动直到第一项的右边框可见。

有什么我想念的吗?

4

1 回答 1

0

尝试将 ListView 的 layout_height 值更改为 fill_parent。

于 2013-11-21T22:23:23.117 回答