Android路径/地区< API 19

时间:2014-03-15 13:14:29

标签: android geometry intersection

我试图在Android中找到2个(或更多)路径或区域的交集。

在规定> = API级别19

时,这很容易
// onDraw(Canvas oCanvas)....
Paint oPaint = new Paint();
oPaint.setStyle(Style.STROKE);
oPaint.setColor(Color.BLACK);

Path oPath1 = new Path();
oPath1.addCircle(200, 400, 100, Direction.CW); // (X,Y,Radius,Direction)    
oCanvas.drawPath(oPath1, oPaint);

Path oPath2 = new Path();
oPath2.addCircle(400, 400, 150, Direction.CW); // (X,Y,Radius,Direction)
oCanvas.drawPath(oPath2, oPaint);
oPath1.op(oPath2, Op.INTERSECT);

// Draw intersection area in red.
oPaint.setColor(Color.RED);
oCanvas.drawPath(oPath1, oPaint);

我注意到Region有一个op级,可以在API级别1上获得。

那么,我如何实现上述效果,但对于所有API级别?

1 个答案:

答案 0 :(得分:0)

您可以使用Region.setPathPath(如问题文本中)转换为Region。然后,您可以像使用API​​ 19代码一样使用op