I have to place WebView into ScrollView. But I have to put some views into the same scrollview before webview. So it looks like this:
I know that it's not right to place webview into scrollview, but it seems like I have no other choise.
Yes you do, because what you want will not work reliably.
But I have to put some views into the same scrollview before webview.
Delete the ScrollView. Change the android:layout_height of your WebView to fill_parent. The WebView will fill up all remaining space in the LinearLayout not consumed by the other widgets.