我想在2点android之间绘制一个位图但是无法做到。我正在尝试绘制一个矩形,然后在其中绘制位图。但那也不起作用。
RectF rect = new RectF(challengePoint.x, challengePoint.y,userChallenge.getChallenge().getCityPinDest().getPosition().x, userChallenge.getChallenge().getCityPinDest().getPosition().y);
Bitmap bitmap1 = BitmapFactory.decodeResource(mapMainView.getResources(), R.drawable.path1);
canvas.drawBitmap(bitmap1, null, rect , null);
请帮我画两点之间的自定义路径。我不想绘制一条简单的线而是我有一个path.png我想把它放在画布中的2点之间