Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个小游戏。所以我有一个小方向键,我希望 onSceneTouchEvent 方法在我触摸屏幕时运行我的方法。但是程序仅在我移动手指时才调用该方法,而不是在我触摸显示器时调用该方法。
您需要确保仅在开始触摸屏幕时才运行您的方法。
if (pSceneTouchEvent.getAction() == MotionEvent.ACTION_DOWN) { doSomething(); return true; }