backStep method
void
backStep()
向后一步
Implementation
void backStep() {
final int backIndex = currentIndex <= 0 ? 0 : currentIndex - 1;
setCurrentIndex(backIndex);
}
向后一步
void backStep() {
final int backIndex = currentIndex <= 0 ? 0 : currentIndex - 1;
setCurrentIndex(backIndex);
}