RecyclerTabLayout
RecyclerTabLayout copied to clipboard
Fix "Invalid indicator position"
Sometimes when I change position of ViewPager I see that current tab at RecyclerTabLayout stay the same. I've figure out after some debugging where is problem. See at method updateCurrentIndicatorPosition. This method don't change adapter's indicatorPosition if dx is 0. So RecyclerTabLayout's position and ViewPager's position do not match. My commit fix this issue. I am comparing not only dx but position to be know we need call notifyDataSetChanged.
Closes https://github.com/nshmura/RecyclerTabLayout/issues/49