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.
我想要一个带有触摸激活区域的静态图像,这些区域调用某些函数来重绘屏幕上的形状。
例如,我触摸一个定义的区域,一个正方形将重绘成一条线。
您可以使用 ImageView 在 Android 中显示图像。
然后为图像视图提供 onTouch 侦听器,当触摸发生时,将指针位置存储到全局变量并返回 false。
然后当 ImageView 发生 onclick 事件时,您可以从全局变量中获取指针位置,并根据该位置采取相应的行动。