光环助手V3.2 RELEASE(20180426-2223)测试问题汇总(除2.8.9.10其他完成)

This commit is contained in:
kehaoyuan
2018-04-27 01:26:03 +08:00
parent 420867378b
commit 35e15263b0
15 changed files with 75 additions and 41 deletions

View File

@ -15,6 +15,7 @@ import com.gh.common.util.ShareUtils;
import com.gh.common.util.StringUtils;
import com.gh.gamecenter.LoginActivity;
import com.gh.gamecenter.R;
import com.gh.gamecenter.SuggestionActivity;
import com.gh.gamecenter.eventbus.EBShowDialog;
import com.lightgame.download.FileUtils;
import com.lightgame.utils.Utils;
@ -149,6 +150,13 @@ public abstract class BaseActivity extends BaseToolBarActivity implements EasyPe
}
} else if ("notfound".equals(showDialog.getType())) {
DialogUtils.showAlertDialog(this, "下载失败", "下载链接已失效,建议提交反馈"
, "立即反馈", "取消"
, () -> {
SuggestionActivity.startSuggestionActivity(this, 4,
null, showDialog.getPath() + ",问题反馈:下载链接失效");
}, null);
}
}
}