File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
WeatherApp/src/com/survivingwithandroid/weatherapp Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,11 +113,11 @@ protected void onPostExecute(Weather weather) {
113
113
114
114
cityText .setText (weather .location .getCity () + "," + weather .location .getCountry ());
115
115
condDescr .setText (weather .currentCondition .getCondition () + "(" + weather .currentCondition .getDescr () + ")" );
116
- temp .setText ("" + Math .round ((weather .temperature .getTemp () - 275 .15 )) + "° C" );
116
+ temp .setText ("" + Math .round ((weather .temperature .getTemp () - 273 .15 )) + "� C" );
117
117
hum .setText ("" + weather .currentCondition .getHumidity () + "%" );
118
118
press .setText ("" + weather .currentCondition .getPressure () + " hPa" );
119
119
windSpeed .setText ("" + weather .wind .getSpeed () + " mps" );
120
- windDeg .setText ("" + weather .wind .getDeg () + "° " );
120
+ windDeg .setText ("" + weather .wind .getDeg () + "� " );
121
121
122
122
}
123
123
@@ -128,4 +128,4 @@ protected void onPostExecute(Weather weather) {
128
128
129
129
130
130
}
131
- }
131
+ }
You can’t perform that action at this time.
0 commit comments