fix start/pause buttons disappear when screen goes off

* fix start/pause buttons disappear, issued by RecyclerView re-draw
* show start/pause buttons in pair to avoid confusions
This commit is contained in:
kapodamy 2019-08-01 18:58:25 -03:00
parent 5a6a6bcc78
commit 0375194e7d
4 changed files with 44 additions and 20 deletions

View file

@ -666,9 +666,9 @@ public class DownloadManager {
continue;
if (mission.running)
paused = true;
else
running = true;
else
paused = true;
}
}