aboutsummaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/com')
-rw-r--r--src/com/cyanogenmod/lockclock/weather/ForecastBuilder.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/cyanogenmod/lockclock/weather/ForecastBuilder.java b/src/com/cyanogenmod/lockclock/weather/ForecastBuilder.java
index 6f8da53..f5e4e6d 100644
--- a/src/com/cyanogenmod/lockclock/weather/ForecastBuilder.java
+++ b/src/com/cyanogenmod/lockclock/weather/ForecastBuilder.java
@@ -80,6 +80,11 @@ public class ForecastBuilder {
TextView weatherTemp = (TextView) view.findViewById(R.id.weather_temp);
weatherTemp.setText(w.getFormattedTemperature());
+ // Humidity and Wind
+ TextView weatherHumWind = (TextView) view.findViewById(R.id.weather_hum_wind);
+ weatherHumWind.setText(w.getFormattedHumidity() + ", " + w.getFormattedWindSpeed() + " "
+ + w.getWindDirection());
+
// City
TextView city = (TextView) view.findViewById(R.id.weather_city);
city.setText(w.getCity());