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
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".