aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Herndl <martin.herndl@gmail.com>2016-03-31 14:13:48 +0200
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-04-17 02:00:16 -0700
commit8af8dab921671bdcb0cf0472c1a96d068ac6a640 (patch)
treead6a4bbe0ceb27f0138fbd1bd2281869e8e68454 /src
parented98ad9a3c16577460b0ad7ce269f982da6e3853 (diff)
downloadandroid_packages_apps_LockClock-8af8dab921671bdcb0cf0472c1a96d068ac6a640.tar.gz
android_packages_apps_LockClock-8af8dab921671bdcb0cf0472c1a96d068ac6a640.tar.bz2
android_packages_apps_LockClock-8af8dab921671bdcb0cf0472c1a96d068ac6a640.zip
Display humidity and wind data in forecast dialog
WeatherInfo already has the data and it just needed to be exposed Change-Id: I8819ad0cd3d0798b1bd6ae50fbc2769922d63748
Diffstat (limited to 'src')
-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());