android 中的警报服务
Alarm services in android
在我的应用程序中,我使用 AsyncTask 从 Url 获取数据,这些 Url 每天都会更新一些新数据,那么怎么可能一天一次下载这些数据。
您可以使用 AlarmManager
The Alarm Manager is intended for cases where you want to have your
application code run at a specific time, even if your application is
not currently running.
因此,您可以指定一天中希望更新数据的固定时间。
或者,您可以使用 TimerTask 或 Handler
在我的应用程序中,我使用 AsyncTask 从 Url 获取数据,这些 Url 每天都会更新一些新数据,那么怎么可能一天一次下载这些数据。
您可以使用 AlarmManager
The Alarm Manager is intended for cases where you want to have your application code run at a specific time, even if your application is not currently running.
因此,您可以指定一天中希望更新数据的固定时间。
或者,您可以使用 TimerTask 或 Handler