我的友盟自动更新代码有问题吗?点击通知栏后没弹出对话框啊。。。已哭晕,求救
我在设置中心写的点击条目检查更新能用(点击条目检查更新,弹出对话框),所以不是其他文件的配置有问题。
下面是加载页面中的代码,这个有问题。
private void updateApp() {
UmengUpdateAgent.setDefault();
UmengUpdateAgent.setUpdateAutoPopup(false);
UmengUpdateAgent.setUpdateOnlyWifi(true);
UmengUpdateAgent.setUpdateListener(new UmengUpdateListener() {
@Override
public void onUpdateReturned(int statusCode, final UpdateResponse updateResponse) {
if (UpdateStatus.Yes == statusCode) {
//有更新
UmengUpdateAgent.setDeltaUpdate(true); //增量更新
UmengUpdateAgent.setRichNotification(true); //启用高级样式,4.1以上支持,暂停/继续和取消按钮
UmengUpdateAgent.showUpdateNotification(SplashActivity.this, updateResponse); //使用通知栏进行提醒
et.putBoolean(Constant.AppHasNew, true);
et.apply();
}
if (UpdateStatus.No == statusCode) {
//没有更新
et.putBoolean(Constant.AppHasNew, false);
et.apply();
}
}
});
UmengUpdateAgent.update(SplashActivity.this);
}
达克小东尼
9 years, 6 months ago