Update CustomKeyDownVod.java

pull/123/head
FongMi 3 years ago
parent 83cb3d481a
commit 93426e67f5
  1. 5
      app/src/mobile/java/com/fongmi/android/tv/ui/custom/CustomKeyDownVod.java

@ -89,9 +89,8 @@ public class CustomKeyDownVod extends GestureDetector.SimpleOnGestureListener {
private int getDelay() {
int count = Math.abs(time) / Constant.INTERVAL_SEEK;
if (count < 5) return 500;
else if (count < 10) return 250;
else if (count < 15) return 100;
if (count < 10) return 250;
else if (count < 20) return 100;
else return 50;
}

Loading…
Cancel
Save