I would like to add or delete pages from my view pager dynamically. Is that possible?

link|improve this question

are u achieve this ?? please help me i want to do same thing – Sam_k Nov 11 '11 at 13:19
@Sam_k Not yet. I haven't had the time to try it out. Solution provided by Paresh doesn't work, but Zsombor's might. I will let you know if I find anything. – Aki Nov 12 '11 at 9:27
feedback

3 Answers

up vote 0 down vote accepted

Yes, since ViewPager gets the child Views from a PagerAdapter, you can add new pages / delete pages on that, and call .notifyDataSetChanged() to reload it.

link|improve this answer
feedback

I am sure you have created an adapter by extending PageAdapter, so there is one method:

 @Override
 public void destroyItem(View collection, int position, Object view) {
           ((ViewPager) collection).removeView((View) view);
 }

For detailed example for the same, just go through this example.

link|improve this answer
its destroy item from container. i want to delete permenentaly from my application. – Sam_k Nov 11 '11 at 13:21
@Parash Rply Please if u got me – Sam_k Nov 12 '11 at 7:06
feedback

Yes, the code should be like this:

public int addPage(View view, int position) {
        if ((position >= 0) && (position < getSize())) {
            myPagerAdapter.mListViews.add(position, view);
            myPagerAdapter.notifyDataSetChanged();
            return position;
        } else {
            return -1;
        }
    }

public View removePage(int position) {
        if ((position < 0) || (position >= getSize()) || (getSize()<=1)) {
            return null;
        } else {
            if (position == mPager.getCurrentItem()) {
                if(position == (getSize()-1)) {
                    mPager.setCurrentItem(position-1);
                } else if (position == 0){
                    mPager.setCurrentItem(1);
                }
            }
            View tempView = myPagerAdapter.mListViews.remove(position);
            myPagerAdapter.notifyDataSetChanged();
            return tempView;
        }
    }

But there is a bug. If the current Item is 0, and to remove page 0, it will not refresh the screen instantly, I haven't found a solution for this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.