In my android app I have a webview :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
My problem is that I can’t scroll the page vertically. Horizontally it works pretty well but not vertically. Now if I set the size of android:layout_height to 400dp for example then it works! but then I can’t support multiple screen sizes… any idea?
Add
or
to LinearLayout