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.
我正在开发一个应用程序,我必须在其中绘制多个位图并组合它们以创建适当的形状,并且我必须分别在所有图像上实现点击侦听器。我可以使用图像视图以及在画布上绘制位图来做到这一点,但是如何通过编码来实现这一点我不知道
图像是这样的
此图像由许多小图像组成,它们被组合成整个图像
覆盖此方法并识别触摸位置并做任何你想做的事......
@Override public boolean onTouchEvent(MotionEvent event) { // TODO Auto-generated method stub return super.onTouchEvent(event); }