ユーザーがこの LEFT または RIGHT ボタンを押すと、ViewPager の左または右に応じて画像が入れ替わるはずです。ボタンは ViewPager の外側にあります。
user1545066
質問する
446 次
1 に答える
0
これを行うには、各ボタンの「onclick」にコードを追加する必要があります。
ViewPager mPager = new ViewPager(mContext); //replace mContext with "this" if in activity
int newPosition = mPager.getCurrentItem() + 1; //- 1 if is the left button
newPosition = newPosition < (mPager.getAdapter().getCount() - 1) ? newPosition : newPosition - 1;
//And again this is for right, for left you need to compare 'newPosition >= 0'
mPager.setCurrentItem(newPosition);
于 2012-08-22T20:46:54.143 に答える