From 93426e67f5e12e54b5f32f18e706fc0b6e717230 Mon Sep 17 00:00:00 2001 From: FongMi Date: Fri, 10 Mar 2023 14:23:43 +0800 Subject: [PATCH] Update CustomKeyDownVod.java --- .../com/fongmi/android/tv/ui/custom/CustomKeyDownVod.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/src/mobile/java/com/fongmi/android/tv/ui/custom/CustomKeyDownVod.java b/app/src/mobile/java/com/fongmi/android/tv/ui/custom/CustomKeyDownVod.java index 968ff3a7f..8b646c6a3 100644 --- a/app/src/mobile/java/com/fongmi/android/tv/ui/custom/CustomKeyDownVod.java +++ b/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; }