Hi guys , I have some code at the minute to load an xml document from an RSS Feed and it is currently working on my PC , but not when I load it into android?? anyone know why this could be?
XmlDocument doc = new XmlDocument();
doc.Load("http://www.worldweatheronline.com/v2/rss.ashx?q=" + city);
XmlNode locationNode = doc.SelectSingleNode("rss/channel/title");
location = locationNode.InnerText;
↧