Posts

Showing posts with the label fragmentpageradapter

How to Remove Fragment from FragmentPagerAdapter?

Image
Clash Royale CLAN TAG #URR8PPP How to Remove Fragment from FragmentPagerAdapter? I know there are some topics about this here already but I could not find a solution which I could get to work for my case. I have a working sliding gallery using a custom FragmentActivity and FragmentPagerAdapter which holds a list of Fragments. FragmentActivity FragmentPagerAdapter Within the FragmentActivity is a ImageView "delete". If clicked, the function deleteMedia() is called which then should remove the current Fragment and the following Fragment should be displayed. How would I have to do that in my example? FragmentActivity ImageView deleteMedia() Fragment Fragment FragmentActivity: public class GalleryPagerActivity extends FragmentActivity implements OnClickListener { private Intent intent; private SharedPreferences settings; private PagerAdapter mPagerAdapter; private ViewPager mPager; private List<Fragment> fragments; private List<WhiteboardMe...