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.
我正在尝试为 android 编写一个应用程序,在用户完成拖动或触摸屏幕后放大(这意味着在 motionEvent.ACTION_UP)。我希望它像捏缩放一样连续,但问题是捏缩放是一个连续动作,因此会创建许多事件,我正在寻找一个会导致连续缩放的 SINGLE 事件(motionEvent.Action_up)。
提前致谢。
在MotionEvent.ACTION_UP您设置一个计时器后,该计时器将反复缓慢地放大您决定的指定区域(而不是根据未来的运动事件进行缩放,例如捏缩放)。
MotionEvent.ACTION_UP