Android WebView Not Loading Mobile Site

前端 未结 5 1904
长情又很酷
长情又很酷 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:39

    You just need to do include following line of code and it will be loading mobile site perfectly!

    webView.setInitialScale(1);
    webView.getSettings().setJavaScriptEnabled(true);
    

提交回复
热议问题