修复部分bug

This commit is contained in:
huangzhuanghua
2016-09-29 18:32:55 +08:00
parent e5e6a07e24
commit 47914f94ac
67 changed files with 450 additions and 813 deletions

View File

@ -57,15 +57,15 @@ public class DownloadDialog implements OnCollectionCallBackListener {
private boolean isShow;
private DownloadDialog(Context context) {
this.context = context;
private DownloadDialog() {
isShow = false;
}
public static DownloadDialog getInstance(Context context) {
if (instance == null) {
instance = new DownloadDialog(context);
instance = new DownloadDialog();
}
instance.context = context;
return instance;
}