我试图在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级别?