Android ViewPager Displaying TextView in Layout
- by Ammonious
I'm having a problem getting my viewpager to work correctly. Currently the bottom part of my layout will page across but the remaining part will not
Here's my code that I have in my PageAdapter
public class MyPageAdapter extends PagerAdapter {
public int getCount() {
return 31;
}
public Object instantiateItem(View collection, int position)…