I have webview and listview.
May be different situations. WebView can be empty or has long strings data.
Also listview: empty or big count lines.
I want see data at webview. Scroll down. After webview I want to see all data of listview.
I do: 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>
I see webview normal. But I see listview is short size. Any reason: webview empty or with data, listview is shortly.
Thanks guys.
I remove listview with data to another activity.