My Android WebView
isn\'t scrollable.
XML Code:
Don't use wrap_content
for your height. If your WebView
has the same height as its content, then there's never anything to scroll as obviously the content all fits by definition (though given you're loading content dynamically this may not be exactly what's happening). Try setting the height to match_parent
or a fixed value.