You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
28 lines
609 B
Java
28 lines
609 B
Java
package android.widget;
|
|
|
|
import android.content.Context;
|
|
import android.view.animation.Interpolator;
|
|
|
|
public class OverScroller {
|
|
|
|
public OverScroller(Context context, Interpolator interpolator) {
|
|
}
|
|
|
|
public OverScroller(Context context) {
|
|
}
|
|
|
|
public void abortAnimation () {}
|
|
|
|
public void startScroll(int startX, int startY, int dx, int dy, int duration) {}
|
|
|
|
public boolean computeScrollOffset() {return false;}
|
|
|
|
public int getCurrX() {return 0;}
|
|
public int getCurrY() {return 0;}
|
|
|
|
public int getFinalX() {return 0;}
|
|
public int getFinalY() {return 0;}
|
|
|
|
public boolean isFinished() {return true;}
|
|
}
|