Back to project page android-weather-demo-application.
The source code is released under:
GNU General Public License
If you think the Android project android-weather-demo-application 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 org.openweathermap.utils; //from w ww .java 2 s . c om /** * Helper methods related to strings * @author samkirton */ public class StringHelper { /** * @return The unicode degrees symbol */ public static char buildDegreeSymbol() { return (char) 0x00B0; } /** * @param latitude To build the string with * @param longitude To build the string with * @return A user friendly location string based on the provided latitude and longitude */ public static String buildLocationString(String latitude, String longitude) { return "(" + latitude + ", " + longitude + ")"; } }