我试图让用户按住屏幕以增加跳跃力(注意jspeed2
)。我正在使用下面的代码,但是它不能满足我的需要。
有什么建议么?
case MotionEvent.ACTION_DOWN: {
if (x < 600 && jspeed2 < 28) {
jspeed2++;
}
}
case MotionEvent.ACTION_UP: {
if (x < 600) {
player.jump();
}
}
最佳答案
您可能要在案例语句中添加break;
行。
请查看this question's top answer以获得更多说明。