5.11.2. Intent Service, Alarms, Notifications

优质
小牛编辑
131浏览
2023-12-01

5.11.2.Intent Service, Alarms, Notifications

可以看到,Android内置了一些很酷的Service,用好可以简化UpdaterService的实现。所以再次重构代码吧。在这里我们引入IntentService来响应Intent请求,另外还需要引入Alarm Service,来定期触发Intent请求。我们还将使用到Notification Service,在系统托盘(Notification Area)显示提示信息。经过重构,我们将得到一个更为优雅的UpdaterService实现。