I would like to add or delete pages from my view pager dynamically. Is that possible?
feedback
|
|
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. | |||
|
feedback
|
|
I am sure you have created an adapter by extending PageAdapter, so there is one method:
For detailed example for the same, just go through this example. | |||||
feedback
|
|
Yes, the code should be like this:
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. | |||
|
feedback
|