-
-
Save codeforfun-jp/f1b33cafc831a2696319b735161ee140 to your computer and use it in GitHub Desktop.
CTB 4-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
} | |
}, 0, 20); | |
} | |
public void changePos() { | |
box.setY(boxY); | |
} | |
@Override | |
public boolean onTouchEvent(MotionEvent event) { | |
if (event.getAction() == MotionEvent.ACTION_DOWN) { | |
boxY -= 20; | |
} | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment