我在其他问题中读到了如何获取位图的位置以及如何定义OnTouchEvent,如下所示,但是Bitmap对象无法设置监听器,我该怎么做?
public boolean onTouchEvent(MotionEvent event){
int action = event.getAction();
int x = event.getX() // or getRawX();
int y = event.getY();
switch(action){
case MotionEvent.ACTION_DOWN:
if (x >= xOfYourBitmap && x < (xOfYourBitmap + yourBitmap.getWidth())
&& y >= yOfYourBitmap && y < (yOfYourBitmap + yourBitmap.getHeight())) {
//tada, if this is true, you've started your click inside your bitmap
}
break;
}
}
答案 0 :(得分:0)
您必须在View
内绘制位图(例如普通View
并绘制Bitmap
作为背景或ImageView
的源/图像)。然后,您可以将onTouchListener
附加到此View
,然后在该听众中进行onTouchEvent
处理。