Skip to content

Instantly share code, notes, and snippets.

@perry14
perry14 / OnTouchListener.java
Last active February 14, 2023 12:36
android: move a view on touch move
View.OnTouchListener touchListener = new View.OnTouchListener() {
private int lastX = 0;
private int lastY = 0;
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN: {
lastX = (int) event.getRawX();
lastY = (int) event.getRawY();
break;