I searched all over Internet for this with no success. I need to Animate an ImageView along a Path. I have created a Path using:
Path path = new Path()
path.moveTo(0, 0);
path.lineTo(184,776);
path.lineTo(184,780);
path.lineTo(184,790);
path.lineTo(184,810);
path.lineTo(230, 900);
ImageView img = new ImageView(this);
Is there any way I can move img along path? Thank you all