Back to project page YahooWeather.
The source code is released under:
GNU General Public License
If you think the Android project YahooWeather listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.imlongluo.weather.utils; //from w ww . j av a 2 s . com public class Constants { public static final String YAHOO_URL = "http://weather.yahooapis.com/forecastrss"; public static final String WOEID_SHENZHEN = "2161853"; public static String getURL() { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(YAHOO_URL).append("&w=").append(WOEID_SHENZHEN); return urlBuilder.toString(); } }