Commit da6513e5 by amateur

1

1 parent 40b11866
...@@ -68,8 +68,10 @@ public class DownloadDialog extends DialogFragment { ...@@ -68,8 +68,10 @@ public class DownloadDialog extends DialogFragment {
@Override @Override
public void onProgress(int progress) { public void onProgress(int progress) {
if (progress == 100) { if (progress == 100) {
String downloadName = FileUtils.getSysDownLoadDir().getName();
String tipsPath = new File(downloadName, name).getAbsolutePath();
mProgressText.post(() -> { mProgressText.post(() -> {
ToastUtils.showLong("下载完成 " + file.getAbsoluteFile()); ToastUtils.showLong("下载完成 " + tipsPath);
dismiss(); dismiss();
}); });
return; return;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!