hikikomoriphoenix / Beedio

Android app that lets you find downloadable videos as you browse the web. Allows queuing downloads. Also includes bookmarking and ad-blocking features for easier browsing experience.
GNU General Public License v2.0
150 stars 44 forks source link

Page Contents in a ViewPager not updating #9

Closed hikikomoriphoenix closed 6 years ago

hikikomoriphoenix commented 6 years ago

Fixed. Code I use to update content: if(getFragmentManager().findFragmentByTag("downloadsInProgress")!=null) { downloadsInProgress.updateDownloadItem(); } Silly me forgot to add tags when adding my fragments. getFragmentManager().beginTransaction().add(pager.getId(), downloadsInProgress, "downloadsInProgress").commit(); getFragmentManager().beginTransaction().add(pager.getId(), downloadsCompleted, "downloadsCompleted").commit(); getFragmentManager().beginTransaction().add(pager.getId(), downloadsInactive, "downloadsInactive").commit();