0

I need to get path of each element from SVG and put them into ArrayList. There are lot of ways to create Drawable. But I need only path of each element on SVG.

Eg: <path d="M31,3h38l28,28v38l-28,28h-38l-28-28v-38z" fill="#a23"/>

How to do this?

isuru
  • 3,385
  • 4
  • 27
  • 62

1 Answers1

1

This stack overflow question may help you to get some understanding of svg path data reading easiest-way-to-read-in-svg-path-data-with-java

Community
  • 1
  • 1
Brajesh Kanungo
  • 129
  • 2
  • 13