My Android WebView isn\'t scrollable.
XML Code:
Hey I had the Same Problem with webview. It was not scrolling even with the match_parent attribute and very simple code.
The problem is not in your xml file. Its in your Java file. In java file of that activity Override onPause AND onResume methods and iclude this code
@Override
protected void onResume() {
super.onResume();
browser.onResume();
}
@Override
protected void onPause() {
super.onPause();
browser.onPause();
}
It is very important that you Pause your WebView AND then Resume it again. Hope that will solve your problem.