11

我想问一下如何在 imageView 上实现或添加标记。我使用 svglib 渲染了一个 SVG,并使用了一个 customImageView,以便我可以缩放和平移图像。

这是我如何使用我的 customImageView 的代码

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        SVG svg;
        switch (mNum) {

        case 1:
            svg = SVGParser.getSVGFromResource(getResources(), R.raw.t1);
            break;
        case 2:
            svg = SVGParser.getSVGFromResource(getResources(), R.raw.t2);
            break;
        case 3:
            svg = SVGParser.getSVGFromResource(getResources(), R.raw.t3);
            break;
        case 4:
            svg = SVGParser.getSVGFromResource(getResources(), R.raw.t4);
            break;
        default:
            svg = SVGParser.getSVGFromResource(getResources(),
                    R.raw.android);

        }

        View v = inflater.inflate(R.layout.hello_world, container, false);
        View tv = v.findViewById(R.id.text);
        imageView = (GestureImageView) v.findViewById(R.id.imageView1);
        imageView.setStrict(false);
        imageView.setStartingScale(lastScale);
        // if(lastXPosition!=0 && lastYPosition!=0)
        imageView.setStartingPosition(lastXPosition, lastYPosition);
        // Log.i("tag",
        // "lastXPosition" + lastXPosition);
        // Log.i("tag",
        // "lastYPosition" + lastYPosition);
        // Log.i("tag",
        // "lastScale" + lastScale);
        // imageView.setRotation(45);
        // imageView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        if (Build.VERSION.SDK_INT > 15)
            imageView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        imageView.setImageDrawable(svg.createPictureDrawable());
        ((TextView) tv).setText("Floor number: " + mNum);
        imageView.setBackgroundColor(Color.WHITE);
        // tv.setBackgroundDrawable(getResources().getDrawable(
        // android.R.drawable.gallery_thumb));
        // imageView.setScaleType(ScaleType.CENTER);
        // ((GestureImageView)imageView).setScale(x);
        return v;
    }

现在我想添加一个图钉,如下图所示......

我的问题
(来源:modality.com

但我的问题是,当我在标记周围平移时,我添加的标记没有与图像 SVG 结合,因此在平移时会留在某个位置......

这是我的代码...注意:尚未最终确定...我仍在寻找一种方法来使其正常工作,并且我正在使用放大的图像视图作为地图...

@Override
protected void onDraw(Canvas canvas) {

    if (layout) {
        if (drawable != null && !isRecycled()) {
            canvas.save();

            float adjustedScale = scale * scaleAdjust;

            canvas.translate(x, y);

            if (rotation != 0.0f) {
                canvas.rotate(rotation);
            }

            if (adjustedScale != 1.0f) {
                canvas.scale(adjustedScale, adjustedScale);
            }

            drawable.draw(canvas);

            canvas.restore();
        }

        if (drawLock.availablePermits() <= 0) {
            drawLock.release();
        }
    }

    // ---add the marker---
    Bitmap marker = BitmapFactory.decodeResource(getResources(),
            R.drawable.search_marker_icon);
    canvas.drawBitmap(marker, 40, 40, null);
    Paint mPaint = new Paint();
    mPaint.setColor(Color.RED);
    canvas.drawCircle(60, 60, 5, mPaint);
    super.onDraw(canvas);
} 

谢谢....我是android的新手:)希望你能帮助我....

我的问题

4

3 回答 3

6

这是一个很好的显示图像库,它支持缩放/平移和在图像上添加引脚 https://github.com/davemorrissey/subsampling-scale-image-view

于 2015-07-16T09:51:20.850 回答
4
 drawable.draw(canvas);

// ---add the marker---
Bitmap marker = BitmapFactory.decodeResource(getResources(),
        R.drawable.search_marker_icon);
canvas.drawBitmap(marker, 40, 40, null);
Paint mPaint = new Paint();
mPaint.setColor(Color.RED);
canvas.drawCircle(60, 60, 5, mPaint);


        canvas.restore();
    }

    if (drawLock.availablePermits() <= 0) {
        drawLock.release();
    }
}
 super.onDraw(canvas);
}   

您需要在 canvas.restore 之前执行此操作......:D 去年得到了这个解决方案......谢谢帮助......我的应用程序快完成了 :)

于 2013-01-08T08:13:35.133 回答
2

在 Android 视图中实现类似 HTML 地图的元素:

  • 支持图像作为可绘制或布局中的位图
  • 允许在 xml 中列出区域标签
  • 允许对资源 xml 使用剪切和粘贴 HTML 区域标签(即,能够获取 HTML 地图 - 和图像并在最少编辑的情况下使用它)
  • 如果图像大于设备屏幕,则支持平移
  • 支持捏缩放
  • 支持点击区域时的回调。
  • 支持将注释显示为气泡文本并在点击气泡时提供回调

试试这个链接你会找到你的解决方案https://github.com/catchthecows/AndroidImageMap

于 2012-12-25T11:02:15.877 回答