Android:将坐标映射到可滚动图像

时间:2012-08-12 15:34:06

标签: android image overlay scrollable coordinate

目前我正在做一个涉及室内定位的项目,其中一个我负责的模块是导入地图,用坐标映射并找到最短距离。 因为图像预计会有一些超出屏幕分辨率的图像因此我可以滚动,然后我打算用路线/坐标覆盖它。但是当使用canvas.drawline()时,我发现坐标仅限于屏幕分辨率。示例:图像分辨率为1024 * 768,手机分辨率为480 * 800。我通过绘制一条从(0,0)到(600,400)开始的线来测试它,然后当我运行并滚动图像时,该线只保留在那里并且不会移动。

代码示例

public class DrawView extends View {
    Paint paint = new Paint();
    private Bitmap bmp;
    private Rect d_rect=null;
    private Rect s_rect=null; 
    private float starting_x=0;
    private float starting_y=0;
    private float scroll_x=0;
    private float scroll_y=0;
    private int scrollRect_x;
    private int scrollRect_y;

    public DrawView(Context context) {
        super(context);
        paint.setColor(Color.RED);
        d_rect=new Rect(0,0,d_width,d_height);
        s_rect=new Rect(0,0,d_width,d_height);
        bmp=BitmapFactory.decodeResource(getResources(), R.drawable.hd);
        bmp.isMutable();
    }

    @Override
    public boolean onTouchEvent(MotionEvent me)
    {
        switch(me.getAction())
        {
        case MotionEvent.ACTION_DOWN:
            starting_x=me.getRawX();
            starting_y=me.getRawY();
        case MotionEvent.ACTION_MOVE:
            float x=me.getRawX();
            float y=me.getRawY();
            scroll_x=x-starting_x;
            scroll_y=y-starting_y;
            starting_x=x;
            starting_y=y;
            invalidate();
            break;              
        }
        return true;
    }

    @Override
    public void onDraw(Canvas canvas) {
        int cur_scrollRectx=scrollRect_x-(int)scroll_x;
        int cur_scrollRecty=scrollRect_y-(int)scroll_y;

        if(cur_scrollRectx<0)cur_scrollRectx=0;
        else if(cur_scrollRectx>(bmp.getWidth()-d_width))cur_scrollRectx=(bmp.getWidth()-d_width);
        if(cur_scrollRecty<0)cur_scrollRecty=0;
        else if(cur_scrollRecty>(bmp.getWidth()-d_width))cur_scrollRecty=(bmp.getWidth()-d_width);
        s_rect.set(cur_scrollRectx,cur_scrollRecty,cur_scrollRectx+d_width,cur_scrollRecty+d_height);

        canvas.drawColor(Color.RED);
        canvas.drawBitmap(bmp, s_rect,d_rect,paint);
        canvas.drawLine(0, 0, 900, 500, paint);

        scrollRect_x=cur_scrollRectx;
        scrollRect_y=cur_scrollRecty;
    }

}

如何获得图像上的实际坐标?我在Android应用程序开发方面还很陌生。提前致谢 ! p / s:对不起凌乱的代码&gt;。&lt;

1 个答案:

答案 0 :(得分:1)

认为你需要存储在s_rect中的信息,因为s_rect将画布的偏移量存储到位图中(?)

int bmp_x_origin = 0 - s_rect.left;
int bmp_y_origin = 0 - s_rect.top;

然后在x,y处绘制(其中x和y是位图坐标)

int draw_x = bmp_x_origin + x;

我没有测试过代码,但我认为它是在正确的轨道上。