0
2点間にキャンバス線アニメーションを描きたい。ラインは完璧に動作していますが、ラインを描きながらアニメーションが必要です。以下のコード行は、キャンバス描画線アニメーション
// draw route
for (int i = 0; i < routeList.size() - 1; i++) {
float[] goal1 = {nodeList.get(routeList.get(i)).x,
nodeList.get(routeList.get(i)).y};
float[] goal2 = {nodeList.get(routeList.get(i + 1)).x,
nodeList.get(routeList.get(i + 1)).y};
currentMatrix.mapPoints(goal1);
currentMatrix.mapPoints(goal2);
paint.setStrokeWidth(routeWidth);
canvas.drawLine(goal1[0], goal1[1], goal2[0], goal2[1], paint);
}
enter link description here
機能のデモでは、あなたは、javaやAndroidに説明してくださいできますか? –