+2
-2
@@ -119,7 +119,7 @@ abstract class HorizontalPageDelegate(readView: ReadView) : PageDelegate(readVie
|
|||||||
abortAnim()
|
abortAnim()
|
||||||
if (!hasNext()) return
|
if (!hasNext()) return
|
||||||
setDirection(PageDirection.NEXT)
|
setDirection(PageDirection.NEXT)
|
||||||
readView.setStartPoint(viewWidth.toFloat(), 0f, false)
|
readView.setStartPoint(viewWidth.toFloat(), 1f, false)
|
||||||
onAnimStart(animationSpeed)
|
onAnimStart(animationSpeed)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -127,7 +127,7 @@ abstract class HorizontalPageDelegate(readView: ReadView) : PageDelegate(readVie
|
|||||||
abortAnim()
|
abortAnim()
|
||||||
if (!hasPrev()) return
|
if (!hasPrev()) return
|
||||||
setDirection(PageDirection.PREV)
|
setDirection(PageDirection.PREV)
|
||||||
readView.setStartPoint(0f, 0f, false)
|
readView.setStartPoint(0f, viewHeight.toFloat(), false)
|
||||||
onAnimStart(animationSpeed)
|
onAnimStart(animationSpeed)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -189,7 +189,7 @@ class SimulationPageDelegate(readView: ReadView) : HorizontalPageDelegate(readVi
|
|||||||
dx = if (mCornerX > 0 && mDirection == PageDirection.NEXT) {
|
dx = if (mCornerX > 0 && mDirection == PageDirection.NEXT) {
|
||||||
-(viewWidth + touchX)
|
-(viewWidth + touchX)
|
||||||
} else {
|
} else {
|
||||||
(viewWidth - touchX + viewWidth)
|
viewWidth - touchX
|
||||||
}
|
}
|
||||||
dy = if (mCornerY > 0) {
|
dy = if (mCornerY > 0) {
|
||||||
(viewHeight - touchY)
|
(viewHeight - touchY)
|
||||||
|
|||||||
Reference in New Issue
Block a user