RichPath
RichPath copied to clipboard
Would it be possible to retrieve the paths coordinates within a view?
trafficstars
Could be quite useful, e.g. to center on some specific position within a big vector drawable.
you can move your path using setTranslation API to move it anywhere, you need to know what is coordinates you want to move to, then you can do like below:
richPath.setTranslationX(x);
richPath.setTranslationY(y);