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.
ページコンテナでビューページャーも使用しましたが、片側だけを循環的にスクロールしたいです。左から右へのスクロールやその他のオプションを停止する方法。
setOnPageChangeListenerViewPager に設定
setOnPageChangeListener
そして
@Override public void onPageSelected(int arg0) { if(lastPage>arg0) {//User Move to left} else(lastPage<arg0) {//User Move to right} lastPage=arg0 }