基础知识
MotionEvent.getPointerIdBits()
View.hasIdentityMatrix():Returns true if the transform matrix is the identity matrix. Recomputes the matrix if necessary.
View.getInverseMatrix():Utility method ...
当一个应用程序组件启动并且该应用程序没有任何其他组件在运行时,Android 系统会为该应用程序启动一个新的 Linux 进程,并使用单线程执行。默认情况下,同一个应用程序的所有组件都运行在同一个进程和线程中(称为“main”线程)。 如果应用程序组件启动并且已经存在该应用程序的进程(因为该应用程序的另一个组件存在),则该组件在该进程内启动并使用相同的执行线程。但是,可以安排应用程序中的不同...