Viewpager PageScrollStateChanged多次调用

时间:2015-05-13 22:05:18

标签: android android-viewpager

我想知道,当浏览viewpager时,PageScrollStateChanged(一个ViewPager的事件)被调用3次是否正常

1 个答案:

答案 0 :(得分:2)

是的,这是正常行为。 arg0的含义如下3次。

   1 for begins dragging
   2 is when the pager is automatically settling to the current page
   0 fully stopped/idle.

你可以在里面编写你的代码" if(arg0 == 1)"阻止,如果你想只在滚动时才执行代码。