I tried many options, but my webview does not scroll vertically, as it scrolls horizontally. I added webview to my android app to show some kind of web content in the app. Content is just text. But this is more than the height of the webview, so I want to give the user the ability to scroll to view the contents of the next page. But webview does not scroll horizontally.
Here is xml and I juss load the html string into it.
<WebView android:id="@+id/webview" android:layout_width="fill_parent" android:layout_height="200dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_marginTop="10dp" />
Please help me and suggest the best solution. Thanks in advance.
source share