Android WebView isn't scrollable

前端 未结 6 375
忘掉有多难
忘掉有多难 2021-01-14 04:38

My Android WebView isn\'t scrollable.

XML Code:



        
6条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-14 05:16

    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.

提交回复
热议问题