Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我还使用了带有页面容器的视图寻呼机,但我只希望以循环方式滚动一侧。如何停止从左到右滚动或任何其他选项。
设置setOnPageChangeListener为您的 ViewPager
setOnPageChangeListener
并且在
@Override public void onPageSelected(int arg0) { if(lastPage>arg0) {//User Move to left} else(lastPage<arg0) {//User Move to right} lastPage=arg0 }