2011.09.20(3)——— android canvas.clipRect

2011.09.20(3)——— android canvas.clipRect
参考: http://www.eoeandroid.com/thread-13852-1-1.html

http://blog.csdn.net/xiaominghimi/article/details/6090631里面 有对clipRect 方法的调用

canvas.clipRect(bmp_x, bmp_y, bmp_x + bmp.getWidth() / 13, bmp_y+bmp.getHeight());    


不是很理解 后来上网找了一下

canvas.clipRect(x, y, x + w, h + y);


这个是将界面中的x, y, x + w, h + y矩形设置为有效的,
可以这么想其他地方都是黑的就这个地方是亮的,你只能看的到这个区域


顺便把那个例子传上来吧






你可能感兴趣的:(android,cliprect)