マイレイアウトで、ListViewとimageViewのscrollviewを設定したいと思います。以下のように試してみました。しかし、それは機能しませんでした。Scrollviewを削除すると、Listviewをスクロールできます。リストビューのアイテムは、インターネットからダウンロードすることにより、コードを介して追加されます。
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/firstImage"
android:layout_width="fill_parent"
android:layout_height="200dip"
android:layout_margin="4dp"
android:scaleType="fitXY" />
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="4dip"
android:layout_weight="1"
android:background="#ffffff" />
</LinearLayout>
</ScrollView>