feat: 增加整点报时,增加闹钟
This commit is contained in:
@@ -77,14 +77,20 @@ public class WeatherManager {
|
||||
WeatherNowResponse weatherNowResponse = getWeatherNowCache();
|
||||
if (weatherNowResponse != null) {
|
||||
mWeatherUpdateManager.publishWeatherNowUpdate(weatherNowResponse);
|
||||
} else {
|
||||
|
||||
}
|
||||
WeatherHourlyResponse weatherHourlyResponse = getWeather24hCache();
|
||||
if (weatherHourlyResponse != null) {
|
||||
mWeatherUpdateManager.publishWeatherHourlyUpdate(weatherHourlyResponse);
|
||||
} else {
|
||||
|
||||
}
|
||||
WeatherDailyResponse weatherDailyResponse = getWeather10DCache();
|
||||
if (weatherDailyResponse != null) {
|
||||
mWeatherUpdateManager.publishWeatherDailyUpdate(weatherDailyResponse);
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user