@Override
protected void onPreExecute() {
super.onPreExecute();
md = new MaterialDialog.Builder(getActivity())
.theme(Theme.LIGHT)
.cancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
isLoading = false;
AsyncDeleteSlow.this.cancel(true);
}
})
.title(R.string.config_clear_cache)
.content(R.string.dialog_content_wipe_cache_slow)
.progress(true, 0)
.cancelable(true)
.show();
isLoading = true;
}
ConfigFragment.java 文件源码
java
阅读 20
收藏 0
点赞 0
评论 0
项目:light-novel-library_Wenku8_Android
作者:
评论列表
文章目录