2023-08-17 10:46:24 +02:00
|
|
|
package android.widget;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
|
|
|
|
|
public class EdgeEffect extends View {
|
|
|
|
|
|
|
|
|
|
public EdgeEffect(Context context) {
|
|
|
|
|
super(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EdgeEffect(Context context, AttributeSet attributeSet) {
|
|
|
|
|
super(context, attributeSet);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:08:16 +02:00
|
|
|
public void setSize(int width, int height) {}
|
|
|
|
|
public void onPull(float deltaDistance) {}
|
2023-09-12 23:18:47 +02:00
|
|
|
public void onPull(float deltaDistance, float displacement) {}
|
2023-08-22 18:08:16 +02:00
|
|
|
public boolean isFinished() {return true;}
|
2023-10-30 22:35:31 +01:00
|
|
|
public void onRelease() {}
|
2024-02-25 17:41:26 +01:00
|
|
|
public void onAbsorb(int velocity) {}
|
2023-08-22 18:08:16 +02:00
|
|
|
|
2023-08-17 10:46:24 +02:00
|
|
|
}
|