Android中的路径是否有类似append()的方法?

时间:2011-07-19 00:00:12

标签: java android path append line

我有一行我想添加到Path但没有看到类似于appened 的方法(在Java中会使用GeneralPath.append(new Line2D.double))< / em>的

例如,在Java代码中我有类似的东西:

GeneralPath thePlots = new GeneralPath();
thePlots[CONST_INT].append(new Line2D.Double(centerX, centerY, xy[0], xy[1]), false);

//later I draw my line and whatever other points I have

但是,在Android中我没有看到附加选项(或Line2D)。是否有另一种方法可以做到这一点,而不是使用canvas.drawLine()然后绘制其余的点?

1 个答案:

答案 0 :(得分:1)

你看过Path吗?