我正在做一个地图应用程序,我需要在“轻拍”区域上绘制一些圆圈。
我能够获得“tap”的x和y坐标。我已经尝试使用画布,位图和类似的东西,我的圈子不断替换整个图像,不要留在拍打点。
我正在使用PhotoView库来处理图像(缩放,滚动等)。
@Override
public void onPhotoTap(View view, float x, float y) {
//and here should go the code to make the circle
//appear over the x y tapped point of the image
Toast.makeText(getBaseContext(), "Tap " + x + " " + y, Toast.LENGTH_SHORT).show();
}