我想通过'onTouchEvent'来捕捉触摸事件的坐标。现在,在我的活动中,我有以下代码来执行此操作:
public boolean onTouchEvent(MotionEvent event) {
try {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
Point p = new Point();
p.set((int) event.getRawX(), (int) event.getRawY());
// The point is added to a list here
return true;
}
updateDraw();
}
catch (Exception e) {
Log.wtf("Error", e.getMessage());
}
return false;
}
活动的XML布局如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MarkLinesActivity" >
<ImageView
android:id="@+id/handView"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:scaleType="fitXY" />
现在在updateDraw()函数中出现了实际问题。因为我尝试通过'onTouchEvent'捕获3个坐标并使用'Path'绘制它们。不幸的是,积分始终位于不正确的位置。这就是updateDraw()中的内容:
Canvas tempCanvas = new Canvas(currentBitmap);
tempCanvas.drawBitmap(origBitmap, 0, 0, null);
tempCanvas.drawPath(p, pa);
这就是我为路径创建坐标的方法:
p.moveTo(points.get(currentLineState).get(0).x, points.get(currentLineState).get(i).y);
for (int i = 1; i < 3; i++) {
try {
p.lineTo( (points.get(currentLineState).get(i).x),
(points.get(currentLineState).get(i).y) );
} catch (Exception e) {
}
}
}
注意:点定义为HashMap<String, ArrayList<Point>>
,p是路径实例。
updateDraw()的最后一部分是在ImageView上绘制canvas创建的内容:
((ImageView) findViewById(R.id.handView)).setImageBitmap(currentBitmap);
现在我的问题是:获取实际坐标的方式是否有问题(我也尝试使用event.getX()等)或者可能是XML的东西?我也试过自己从ImageView扩展一个类并通过覆盖'onDraw'来绘制,但是也为这些点创建了错误的位置。感谢。
答案 0 :(得分:0)
如果您想在View
和图片坐标之间进行映射,请使用Matrix
getImageMatrix()
方法。