You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
这个地方怎么释放的是index位置而不是position位置? @OverRide
public void onPageRelease(boolean isNext, int position) {
Log.e(TAG,"onPageRelease()......position = " + position + "-isNext = "+ isNext);
int index = 0;
if (isNext){
index = 0;
}else {
index = 1;
}
releaseVideo(index);
}
The text was updated successfully, but these errors were encountered:
这个地方怎么释放的是index位置而不是position位置?
@OverRide
public void onPageRelease(boolean isNext, int position) {
Log.e(TAG,"onPageRelease()......position = " + position + "-isNext = "+ isNext);
int index = 0;
if (isNext){
index = 0;
}else {
index = 1;
}
releaseVideo(index);
}
The text was updated successfully, but these errors were encountered: