我正在尝试使用地图跟踪一个人在建筑物内的位置。当用户开始时,他们应该在房间 307 的门口,但是当我绘制它们时(由绿色圆圈表示),它们正确地放置在 x 轴上,但在 y 轴上太高了。我的缩放代码或定位是否有错误?用户从 x=163,y=414 开始。canvas.getHeight() 不返回我使用时的值fillStart
吗?
我为 MyImageView 编写了以下 onDraw 方法,MainActivity 使用 x,y 坐标跟踪用户当前所在的位置:
public class MyImageView extends ImageView {
private Paint p = new Paint(Paint.ANTI_ALIAS_FLAG);
private float scaleX, scaleY;
private MainActivity ma;
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
float x = ma.getX();
float y = ma.getY();
Drawable d = getResources().getDrawable(R.drawable.ist_level_3);
scaleX = (float) d.getIntrinsicWidth() /canvas.getWidth();
scaleY = (float) d.getIntrinsicHeight()/canvas.getHeight() ;
p.setARGB(255, 0, 255, 20);
p.setStyle(Style.FILL);
canvas.drawCircle( (x * scaleX), (y * scaleY), 10, p);
Log.i("MyImageView", String.format(
"xy %.2f,%.2f Drawing %.2f,%.2f Scales %.2f, %.2f", x, y,
(x * scaleX), (y * scaleY), scaleX, scaleY));
}
我在我的布局中使用它是这样的:
<com.jonathanmackenzie.indoortracking.MyImageView
android:id="@+id/istMap"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitStart"
android:src="@drawable/ist_level_3"
android:onClick="resetLocation" />
地图正确显示如下: