Github user Hiteshgautam01 commented on a diff in the pull request:
https://github.com/apache/incubator-taverna-mobile/pull/86#discussion_r195900202
--- Diff:
app/src/main/java/org/apache/taverna/mobile/ui/anouncements/AnnouncementPresenter.java
---
@@ -62,7 +62,6 @@ public void detachView() {
public void loadAllAnnouncement(int pageNumber) {
checkViewAttached();
- getMvpView().showProgressbar(true);
--- End diff --
While announcements are loading, due to this we can see two progress bar at
the same time. You can see in this video:-
https://drive.google.com/file/d/1GaAdVFM7PGhusLZizwuAo2rIBD2Zj4ly/view?usp=sharing
So, I removed one progress bar in loadAllAnnouncement.
---