2023-08-17 10:46:24 +02:00
|
|
|
package android.widget;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.view.animation.Interpolator;
|
|
|
|
|
|
2023-09-01 12:13:24 +02:00
|
|
|
public class OverScroller {
|
2023-08-17 10:46:24 +02:00
|
|
|
|
|
|
|
|
public OverScroller(Context context, Interpolator interpolator) {
|
2023-09-01 12:13:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OverScroller(Context context) {
|
2023-08-17 10:46:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void abortAnimation () {}
|
2023-08-23 09:16:45 +02:00
|
|
|
|
|
|
|
|
public void startScroll(int startX, int startY, int dx, int dy, int duration) {}
|
2023-09-01 12:13:24 +02:00
|
|
|
|
|
|
|
|
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;}
|
2023-10-30 22:35:31 +01:00
|
|
|
|
|
|
|
|
public boolean isFinished() {return true;}
|
2023-08-17 10:46:24 +02:00
|
|
|
}
|