-
Notifications
You must be signed in to change notification settings - Fork 258
DownloadNotifier
Haoge edited this page Dec 14, 2017
·
2 revisions
在APK下载时,显示下载进度条通知
[UpdateConfig.getConfig() / UpdateBuilder.create()]
.setDownloadNotifier(notifier)public class Creator implements DownloadCreator {
@Override
public DownloadCallback create(Update update, Activity activity) {
// 当更新策略中的UpdateStrategy.isShowDownloadDialog为true时。在下载前会调用到此进行进度条通知容器创建。
// update: 更新数据实体类
// activity: 当前顶层的Activity实例。
// 在此创建一个DownloadCallback实例。下载时的进度会通知到此实例回调中来。然后即可对界面进行更新做进度显示操作。
}
}