android自定义控件(二)Canvas
一。重要方法
1.translate
2.scale
3.rotate
二。注意
1.明确顺序
canvas.rotate(45); canvas.drawRect(new Rect(50, 50, 100, 100), paint);
如果顺序调换,则没有旋转的效果
2.转换的时候,需要把转换的中心点移到shape自身的中心
int left=50,top=50, right = 100,bottom = 100; canvas.translate(right/2, bottom/2); canvas.rotate(45); canvas.drawRect(new Rect(-right/2, -bottom/2, right/2, bottom/2), paint);
3.变换过程
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。