Remove Fragment Page from ViewPager in Android
问题 I'm trying to dynamically add and remove Fragments from a ViewPager, adding works without any problems, but removing doesn't work as expected. Everytime I want to remove the current item, the last one gets removed. I also tried to use an FragmentStatePagerAdapter or return POSITION_NONE in the adapter's getItemPosition method. What am I doing wrong? Here's a basic example: MainActivity.java public class MainActivity extends FragmentActivity implements TextProvider { private Button mAdd;