Android自定义控件入门到精通--Region区域

《Android自定义控件入门到精通》文章索引 ☞ https://blog.csdn.net/Jhone_csdn/article/details/118146683

《Android自定义控件入门到精通》所有源码 ☞ https://gitee.com/zengjiangwen/Code

Region

Region(区域),跟Rect(矩形)类似也有很大不同,一个Region是由一个或多个Rect组成

Region构造:

  • Region() 构造一个空的区域
  • Region(Region) 根据现有的区域构造新的区域,等于复制一个一样的
  • Region(Rect) 根据一个矩形构造一个区域
  • Region(left,top,right,bottom) 通过四个边界确定一个区域
@Override
protected void onDraw(Canvas canvas) {
    mPaint.setStyle(Paint.Style.FILL);
    mPaint.setColor(Color.RED);
    Region region=new Region(10,10,100,120);
    drawRegion(region,canvas,mPaint);
}

private void drawRegion(Region region,Canvas canvas,Paint paint){
    RegionIterator iterator=new RegionIterator(region);
    Rect rect=new Rect();
    while (iterator.next(rect)){//遍历
        canvas.drawRect(rect,paint);
    }
}

在这里插入图片描述

Canvas并没有直接canvas.drawRegion的方法,但是提供了RegionIterator类,可以自己实现一个drawRegion()方法,由于这个Region是通过一个Rect构成的,所以画出来跟Rect是一样的。

如果Region不是矩形,那会是什么样子呢?

    @Override
    protected void onDraw(Canvas canvas) {
        mPaint.setStyle(Paint.Style.STROKE);
        mPaint.setColor(Color.RED);
        //创建一个空的Region
        Region region = new Region();
        //通过path创建一个椭圆
        Path path = new Path();
        path.addOval(10, 10, 160, 320, Path.Direction.CW);
        //将椭圆添加到空的Region,并通过新的Region进行裁剪
        region.setPath(path, new Region(10, 10, 160, 160));
        drawRegion(region, canvas, mPaint);
    }

在这里插入图片描述

通过上面的例子我们可以清楚的明白,一个Region是有一个或者多个Rect组成。

Region.set()

在这里插入图片描述

前三个就是设置Region的区域了,没啥说的

setPath上面讲过了,可以理解为一个裁剪功能

setEmpty为置空/清空区域内容

Region.get()

在这里插入图片描述

getBounds()

返回Region的区域范围,通过上面Region椭圆的例子我们猜测,Region的边界到底是整个椭圆所在矩形还是椭圆的上半部分所在矩形区域,setPath()裁剪后,Region的区域怎么确定

    @Override
    protected void onDraw(Canvas canvas) {

        mPaint.setStyle(Paint.Style.STROKE);
        mPaint.setColor(Color.RED);
        //创建一个空的Region
        Region region = new Region();

        //通过path创建一个椭圆
        Path path = new Path();
        path.addOval(10, 10, 160, 320, Path.Direction.CW);

        //将椭圆添加到空的Region,并通过新的Region进行裁剪,也可以理解为在新的Region中呈现
        region.setPath(path, new Region(10, 10, 160, 160));
        drawRegion(region, canvas, mPaint);

        //画出椭圆的区域
        mPaint.setColor(Color.BLUE);
        canvas.drawPath(path, mPaint);

        //画出region的区域
        mPaint.setColor(Color.YELLOW);
        Rect rect = region.getBounds();
        canvas.drawRect(rect, mPaint);
    }

在这里插入图片描述

黄色框为Region.getBounds()的区域,也就是setPath的第二个参数new Region(10,10,160,160)的范围

Region.getBoundaryPath()

    @Override
    protected void onDraw(Canvas canvas) {
        mPaint.setStyle(Paint.Style.STROKE);
        mPaint.setColor(Color.RED);
        //创建一个空的Region
        Region region = new Region();
        //通过path创建一个椭圆
        Path path = new Path();
        path.addOval(10, 10, 160, 320, Path.Direction.CW);
        //将椭圆添加到空的Region,并通过新的Region进行裁剪,也可以理解为在新的Region中呈现
        region.setPath(path, new Region(10, 10, 160, 160));
        drawRegion(region, canvas, mPaint);
        //画出椭圆的区域
        mPaint.setColor(Color.BLUE);
        canvas.drawPath(path, mPaint);
        //画出region的区域
        mPaint.setColor(Color.YELLOW);
        Path boundaryPath = region.getBoundaryPath();
        canvas.drawPath(boundaryPath, mPaint);
    }

在这里插入图片描述

啥,这是个啥?什么也没有啊!

Region.getBoundaryPath()顾名思义呢是返回Region区域图形的Path路径,那应该就是椭圆的上半部分的Path啊,怎么没有呢?

注意了,Region.getBoundaryPath()只是获取的Path只有原始数据,Path是路劲概念,不能直接Draw出来,需要转换一下

    @Override
    protected void onDraw(Canvas canvas) {
        mPaint.setStyle(Paint.Style.STROKE);
        mPaint.setColor(Color.RED);
        //创建一个空的Region
        Region region = new Region();
        //通过path创建一个椭圆
        Path path = new Path();
        path.addOval(10, 10, 160, 320, Path.Direction.CW);
        //将椭圆添加到空的Region,并通过新的Region进行裁剪,也可以理解为在新的Region中呈现
        region.setPath(path, new Region(10, 10, 160, 160));
        drawRegion(region, canvas, mPaint);
        //画出椭圆的区域
        mPaint.setColor(Color.BLUE);
        canvas.drawPath(path, mPaint);
        //画出region的区域
        mPaint.setColor(Color.YELLOW);
        Path boundaryPath = region.getBoundaryPath();
        boundaryPath.transform(new Matrix());
        canvas.drawPath(boundaryPath, mPaint);
    }

在这里插入图片描述

黄色路径就是Region内部元素的Path了,同样的,我们还可以通过Matrix来操作这个Path

    @Override
    protected void onDraw(Canvas canvas) {
        mPaint.setStyle(Paint.Style.STROKE);
        mPaint.setColor(Color.RED);
        //创建一个空的Region
        Region region = new Region();
        //通过path创建一个椭圆
        Path path = new Path();
        path.addOval(10, 10, 160, 320, Path.Direction.CW);
        //将椭圆添加到空的Region,并通过新的Region进行裁剪,也可以理解为在新的Region中呈现
        region.setPath(path, new Region(10, 10, 160, 160));
        drawRegion(region, canvas, mPaint);
        //画出椭圆的区域
        mPaint.setColor(Color.BLUE);
        canvas.drawPath(path, mPaint);
        //画出region的区域
        mPaint.setColor(Color.YELLOW);
        Path boundaryPath= region.getBoundaryPath();
        Matrix matrix=new Matrix();
        //向右平移100
        matrix.setTranslate(100,0);
        boundaryPath.transform(matrix);
        canvas.drawPath(boundaryPath,mPaint);
    }

在这里插入图片描述

Region.op()

op()是对Region的混合操作,我们知道,两个区域可以相交,那就有交集,并集,补集等概念。

在这里插入图片描述

图形的Op有以下几种:

    public enum Op {
        DIFFERENCE(0),
        INTERSECT(1),
        UNION(2),
        XOR(3),
        REVERSE_DIFFERENCE(4),
        REPLACE(5);
    }

op(Region ,Op)

 @Override
    protected void onDraw(Canvas canvas) {

        mPaint.setStyle(Paint.Style.FILL);
        mPaint.setColor(Color.GRAY);
        //第一组Region
        Region regionOneAndOne = new Region(20, 50, 120, 90);
        Region regionOneAndTwo = new Region(50, 20, 90, 120);
        //第二组Region
        Region regionTwoAndOne = new Region(160, 50, 260, 90);
        Region regionTwoAndTwo = new Region(190, 20, 230, 120);
        //第三组Region
        Region regionThreeAndOne = new Region(300, 50, 400, 90);
        Region regionThreeAndTwo = new Region(330, 20, 370, 120);
        //第四组Region
        Region regionFourAndOne = new Region(20, 190, 120, 230);
        Region regionFourAndTwo = new Region(50, 160, 90, 260);
        //第五组Region
        Region regionFiveAndOne = new Region(160, 190, 260, 230);
        Region regionFiveAndTwo = new Region(190, 160, 230, 260);
        //第六组Region
        Region regionSixAndOne = new Region(300, 190, 400, 230);
        Region regionSixAndTwo = new Region(330, 160, 370, 260);

        drawRegion(regionOneAndOne, canvas, mPaint);
        drawRegion(regionOneAndTwo, canvas, mPaint);
        drawRegion(regionTwoAndOne, canvas, mPaint);
        drawRegion(regionTwoAndTwo, canvas, mPaint);
        drawRegion(regionThreeAndOne, canvas, mPaint);
        drawRegion(regionThreeAndTwo, canvas, mPaint);
        drawRegion(regionFourAndOne, canvas, mPaint);
        drawRegion(regionFourAndTwo, canvas, mPaint);
        drawRegion(regionFiveAndOne, canvas, mPaint);
        drawRegion(regionFiveAndTwo, canvas, mPaint);
        drawRegion(regionSixAndOne, canvas, mPaint);
        drawRegion(regionSixAndTwo, canvas, mPaint);

        mPaint.setColor(Color.YELLOW);

        regionOneAndOne.op(regionOneAndTwo, Region.Op.DIFFERENCE);
        //op操作之后的区域保存在regionOneAndOne
        drawRegion(regionOneAndOne, canvas, mPaint);
        canvas.drawText("Op.DIFFERENCE", 30, 140, mPaint);

        regionTwoAndOne.op(regionTwoAndTwo, Region.Op.INTERSECT);
        drawRegion(regionTwoAndOne, canvas, mPaint);
        canvas.drawText("Op.INTERSECT", 170, 140, mPaint);

        regionThreeAndOne.op(regionThreeAndTwo, Region.Op.UNION);
        drawRegion(regionThreeAndOne, canvas, mPaint);
        canvas.drawText("Op.UNION", 320, 140, mPaint);

        regionFourAndOne.op(regionFourAndTwo, Region.Op.XOR);
        drawRegion(regionFourAndOne, canvas, mPaint);
        canvas.drawText("Op.XOR", 50, 280, mPaint);

        regionFiveAndOne.op(regionFiveAndTwo, Region.Op.REPLACE);
        drawRegion(regionFiveAndOne, canvas, mPaint);
        canvas.drawText("Op.REPLACE", 175, 280, mPaint);

        regionSixAndOne.op(regionSixAndTwo, Region.Op.REVERSE_DIFFERENCE);
        drawRegion(regionSixAndOne, canvas, mPaint);
        canvas.drawText("Op.REVERSE_DIFFERENCE", 280, 280, mPaint);
    }

在这里插入图片描述

op(Region,Region,Op)

这里参数中有两个Region,包括调用者,一共有三个Region参与Op操作?

我们先实现三个Op类型,再在改变这三个Op类型就可以实现六组类型了

我们通过红、绿、蓝三个圆形区域相交来说明 op(Region,Region,Op),并且还是用黄色来绘制最终的op结果

 @Override
    protected void onDraw(Canvas canvas) {

        mPaint.setStyle(Paint.Style.FILL);
        mPaint.setColor(Color.GRAY);
        //第一组Region
        Region regionOneAndOne = new Region();
        Path path11 = new Path();
        path11.addCircle(90, 60, 40, Path.Direction.CW);
        regionOneAndOne.setPath(path11, new Region(50, 20, 130, 100));
        mPaint.setColor(Color.RED);
        drawRegion(regionOneAndOne, canvas, mPaint);

        Region regionOneAndTwo = new Region();
        Path path12 = new Path();
        path12.addCircle(60, 90, 40, Path.Direction.CW);
        regionOneAndTwo.setPath(path12, new Region(20, 50, 100, 130));
        mPaint.setColor(Color.GREEN);
        drawRegion(regionOneAndTwo, canvas, mPaint);

        Region regionOneAndThree = new Region();
        Path path13 = new Path();
        path13.addCircle(120, 90, 40, Path.Direction.CW);
        regionOneAndThree.setPath(path13, new Region(80, 50, 160, 130));
        mPaint.setColor(Color.BLUE);
        drawRegion(regionOneAndThree, canvas, mPaint);

        //第一组Op
        regionOneAndOne.op(regionOneAndTwo, regionOneAndThree, Region.Op.DIFFERENCE);
        mPaint.setColor(Color.YELLOW);
        drawRegion(regionOneAndOne, canvas, mPaint);
        canvas.drawText("Op.DIFFERENCE", 70, 150, mPaint);

        //第二组Region
        Region regionTwoAndOne = new Region();
        Path path21 = new Path();
        path21.addCircle(270, 60, 40, Path.Direction.CW);
        regionTwoAndOne.setPath(path21, new Region(230, 20, 310, 100));
        mPaint.setColor(Color.RED);
        drawRegion(regionTwoAndOne, canvas, mPaint);

        Region regionTwoAndTwo = new Region();
        Path path22 = new Path();
        path22.addCircle(240, 90, 40, Path.Direction.CW);
        regionTwoAndTwo.setPath(path22, new Region(200, 50, 280, 130));
        mPaint.setColor(Color.GREEN);
        drawRegion(regionTwoAndTwo, canvas, mPaint);

        Region regionTwoAndThree = new Region();
        Path path23 = new Path();
        path23.addCircle(300, 90, 40, Path.Direction.CW);
        regionTwoAndThree.setPath(path23, new Region(260, 50, 340, 130));
        mPaint.setColor(Color.BLUE);
        drawRegion(regionTwoAndThree, canvas, mPaint);

        //第二组Op
        regionTwoAndOne.op(regionTwoAndTwo, regionTwoAndThree, Region.Op.INTERSECT);
        mPaint.setColor(Color.YELLOW);
        drawRegion(regionTwoAndOne, canvas, mPaint);
        canvas.drawText("Op.INTERSECT", 250, 150, mPaint);

        //第三组Region
        Region regionThreeAndOne = new Region();
        Path path31 = new Path();
        path31.addCircle(450, 60, 40, Path.Direction.CW);
        regionThreeAndOne.setPath(path31, new Region(410, 20, 490, 100));
        mPaint.setColor(Color.RED);
        drawRegion(regionThreeAndOne, canvas, mPaint);

        Region regionThreeAndTwo = new Region();
        Path path32 = new Path();
        path32.addCircle(420, 90, 40, Path.Direction.CW);
        regionThreeAndTwo.setPath(path32, new Region(380, 50, 460, 130));
        mPaint.setColor(Color.GREEN);
        drawRegion(regionThreeAndTwo, canvas, mPaint);

        Region regionThreeAndThree = new Region();
        Path path33 = new Path();
        path33.addCircle(480, 90, 40, Path.Direction.CW);
        regionThreeAndThree.setPath(path33, new Region(440, 50, 520, 130));
        mPaint.setColor(Color.BLUE);
        drawRegion(regionThreeAndThree, canvas, mPaint);

        //第三组Op
        regionThreeAndOne.op(regionThreeAndTwo, regionThreeAndThree, Region.Op.UNION);
        mPaint.setColor(Color.YELLOW);
        drawRegion(regionThreeAndOne, canvas, mPaint);
        canvas.drawText("Op.UNION", 430, 150, mPaint);
    }

在这里插入图片描述

可以看到,红色圆形并没有参与op操作,结果也跟上图一样。

其实通过源码,我们可以发现

region1.op(region2 ,op)=region1.op(region1,region2,op)

同理:

region1.op(region2,region3,op)=region2.op(region3,op)

结论,op操作只针对参数中的两个Region操作,与调用者无关。

Region的其它方法

boolean isEmpty();//判断该区域是否为空
boolean isRect(); //是否是一个矩形
boolean isComplex();//是否是多个区域组合
boolean contains(int x, int y);//是否包含某点  
boolean quickContains(Rect r);  //是否包含某矩形
boolean quickContains(int left, int top, int right, int bottom); //是否没有包含某矩形 
boolean quickReject(Rect r);//是否没和该矩形相交  
boolean quickReject(int left, int top, int right, int bottom); //是否没和该矩形相交  
boolean quickReject(Region region);  //是否没和该区域相交  
void translate(int dx, int dy);//对区域平移
void translate(int dx, int dy, Region dst);//对区域平移,结果用dst接受,如果dst为空,那么改变的是本身this
void scale(float scale); //对区域放大缩小
void scale(float scale, Region dst);//对区域放大缩小,结果用dst接受,如果dst为空,那么改变的是本身this
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一鱼浅游

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值