如何获取android.graphics.path的所有段

时间:2014-04-21 09:17:38

标签: android path

我已经用moveto(),lineTo(),cubeto()和close()创建了一个android.graphics.path。

如何取回所有这些操作? 我的意思是类似下面的伪代码:

operations[] = getOperations(mypath);
String sOperation=operation[0].type; // moveto,cubeto,lineto,close
int X=operation[0].x;    
int Y=operation[0].y;

1 个答案:

答案 0 :(得分:0)

我担心这是不可能的。 In the source of android.graphics.Path,您会发现该方法直接调用本机方法,并且不提供任何检索段的机制。

如果您希望保留元组,我建议您维护自己的阵列。