有关viewPager错误The application's PagerAdapter changed the adapter's contents without calling PagerAdap

今天在新的公司把上一个Android攻城狮的代码从eclipse搬到Android Studio之后,发现一个坑,首页的图片轮播报错了233。

先贴出报错信息

                  java.lang.IllegalStateException: The application's PagerAdapter changed the adapter's contents without calling PagerAdapter#notifyDataSetChanged! Expected adapter item count: 3, found: 2147483647 Pager id: com.smcy.dothing:id/sroll_viewpager Pager class: class com.smcy.dothing.view.AutoScrollViewPager Problematic adapter: class com.smcy.dothing.view.AutoScrollViewPager$ImageViewAdapter

我想大家应该也看出来了,这个轮播也是用的很平常的viewPager+PagerAdapter。经过查阅资料之后发现,这个错误是由于系统跟踪count的值和getCount()所返回的值不一致,故报出此错误。

那为什么之前在eclipse中不报错呢?因为ADT在22版本之后,pagerAdapter对notifyDataSetChanged()和getCount()这两个方法执行顺序非常严格。这就需要我们在ViewPager初始化内容之后再将它传给PagerAdapter。或者在更新adapter的内容之后调用adapter的notifyDataSetChanged()方法。

具体原因可以参见文档 http://stackoverflow.com/questions/16756131/fragmentstatepageradapter-stopped-working-after-updating-to-adt-22

你可能感兴趣的:(有关viewPager错误The application's PagerAdapter changed the adapter's contents without calling PagerAdap)