Android WebView Not Loading Mobile Site

前端 未结 5 1906
长情又很酷
长情又很酷 2021-01-07 05:39

My app shows a list of articles from an RSS feed and when one is selected it shows the article in a web view. The problem is that the web view is displaying the desktop sit

5条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-07 06:27

    Setting setUseWideViewPort to false solved the problem for me:

    mWebView.getSettings().setUseWideViewPort(false);
    

提交回复
热议问题