ScrollView中的WebView和ListView

时间:2012-04-21 17:19:42

标签: android listview webview scrollview

我有webview和listview。 可能是不同的情况。 WebView可以为空或具有长字符串数据。 listview:空或大计数行。 我想在webview上看到数据。向下滚动。在webview之后我想查看listview的所有数据。 我这样做:scrollview - LinearLayout - WebView - ListView。

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

 <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

 <WebView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >
</WebView>

 <ListView
    android:layout_width="fill_parent"
    android:layout_weight="1"
    android:layout_height="wrap_content" >
</ListView>

</LinearLayout>
</ScrollView>

我看到webview正常。但我看到listview的尺寸很短。任何原因:webview为空或有数据,listview很快就会出现。

1 个答案:

答案 0 :(得分:0)

谢谢你们。

我将带有数据的listview删除到另一个活动。

相关问题