call notifyDataSetChanged on the viewpager adapter earlier

This commit is contained in:
tibbi 2017-06-26 23:24:44 +02:00
parent a0b9dc7754
commit f282c5b0af

View file

@ -234,9 +234,9 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1 || !isDestroyed) {
view_pager.apply {
adapter = pagerAdapter
adapter!!.notifyDataSetChanged()
currentItem = mPos
addOnPageChangeListener(this@ViewPagerActivity)
adapter!!.notifyDataSetChanged()
}
}
}