Android WebView Not Loading Mobile Site

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

    As @WarrenFaith pointed out in comments, this might be happening because of the custom User-Agent string that you are setting with

    web.getSettings().setUserAgentString("Android");
    

    Do not set this or make sure your webserver is configured to serve the mobile version of the site when it receives request with user agent as "Android".

提交回复
热议问题