feat: 增加整点报时,增加闹钟

This commit is contained in:
2026-06-01 01:23:35 +08:00
parent 1c89943459
commit 1f6832ac17
60 changed files with 71963 additions and 77 deletions

View File

@@ -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 {
}
}