2

我正在尝试使用地图跟踪一个人在建筑物内的位置。当用户开始时,他们应该在房间 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" />

地图正确显示如下:

在此处输入图像描述

4

2 回答 2

1

你看过物体setWillNotDraw(boolean)上的功能吗?ImageView它帮助了我也许这也是你的问题?

对于文档:

http://developer.android.com/reference/android/view/View.html#setWillNotDraw(boolean)

于 2014-03-23T10:40:57.573 回答
0

明显的。您忘记了 Y=0 位于屏幕顶部。虽然您的入口很可能在标准坐标系中提供,底部为 0。

于 2016-09-13T05:23:39.237 回答