| 1234567891011121314151617181920212223242526272829303132 |
- // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
- // Jad home page: http://www.geocities.com/kpdus/jad.html
- // Decompiler options: braces fieldsfirst space lnc
- package eVVM.apk.helper.basepicker;
- import android.view.MotionEvent;
- // Referenced classes of package com.qingchifan.view:
- // LoopView
- final class LoopViewGestureListener extends android.view.GestureDetector.SimpleOnGestureListener {
- final LoopMsgView loopView;
- LoopViewGestureListener(LoopMsgView loopview) {
- super();
- loopView = loopview;
- }
- public final boolean onDown(MotionEvent motionevent) {
- if (loopView.mTimer != null) {
- loopView.mTimer.cancel();
- }
- return true;
- }
- public final boolean onFling(MotionEvent motionevent, MotionEvent motionevent1, float f, float f1) {
- loopView.b(f1);
- return true;
- }
- }
|