当我触摸屏幕上的某个区域时,我希望在触摸区域显示ImageView
。 imageview的一个例子如下。
ImageView image = (ImageView)findViewById(R.id.image);
如何使用以下方法在屏幕上触摸区域设置图像。此外,当我点击一个新区域时,前一个图像变得不可见。
@Override
public boolean onTouchEvent(MotionEvent event, view) {
final int action = event.getAction();
final int x = (int) event.getX();
final int y = (int) event.getY();
boolean result = false;
}
答案 0 :(得分:1)
使用Canvas,您将获得xy坐标,您可以轻松地在该坐标处获取Imageview