This commit is contained in:
lixiaopeng
2020-01-19 16:51:06 +08:00
parent 4a35f30dda
commit f78f899b75
3 changed files with 3 additions and 5 deletions

View File

@@ -571,7 +571,6 @@ public class TanluCardViewFragment extends MvpFragment<IView, Presenter<IView>>
//判断是图片还是视频,第一个时,上一个不可点击
Log.e(TAG, " tv_previous_res --1-> currentPosition = " + currentPosition + " >> size= " + markerExploreWayList.size());
if (currentPosition < 0) {
// return;
currentPosition = markerExploreWayList.size();
}
currentPosition--;
@@ -583,7 +582,6 @@ public class TanluCardViewFragment extends MvpFragment<IView, Presenter<IView>>
//判断是图片还是视频,最后一个时,下一个不可点击
Log.e(TAG, " tv_next_res --1-> currentPosition = " + currentPosition + " >> size= " + markerExploreWayList.size());
if (currentPosition >= markerExploreWayList.size()) {
// return;
currentPosition = 0;
}
currentPosition++;