我正在使用ARGB_8888使背景可见以获得分层效果.
我很震惊地发现时间大约为50ms,因为我认为drawBitmap是一个非常简单的 *** 作.有人可以指导我是否有任何根本性的错误.以下是我的代码
创建空白位图
Rectangle = Bitmap.createBitmap(320,480,Bitmap.Config.ARGB_8888);Circle = Bitmap.createBitmap(70,70,Bitmap.Config.ARGB_8888);Leaf1 = Bitmap.createBitmap(20,30,Bitmap.Config.ARGB_8888);
在适当的BitMap上绘制形状
Canvas c = new Canvas(Rectangle);Paint p = new Paint();p.setAntiAlias(true);p.setcolor(0xff6e8b3e);c.drawRect(0,320,p);Canvas c = new Canvas(Circle);Paint p = new Paint();CirclePath = new Path();p.setAntiAlias(true);p.setcolor(0xffcd661d);System.out.println("x = "+x+" y = "+y);CirclePath.addCircle(50,50,10,Path.Direction.CW);c.drawPath(CirclePath,p);Canvas c = new Canvas(Leaf1);Paint paint = new Paint();Path path = new Path();paint.setAntiAlias(true);path.moveto((float)184.37,(float)219.15);path.cubicTo((float)188.32,(float)219.15,(float)192.88,(float)220.44,(float)195.62,(float)223.54);path.cubicTo((float)197.84,(float)226.05,(float)203.2,(float)229.84,(float)198.18,(float)245.98);
在OnDraw中绘制BitMap
canvas.drawBitmap(Rectangle,p);canvas.translate(x,y); // For animation effectcanvas.drawBitmap(Circle,p);canvas.drawBitmap(Leaf1,p);
现在,当我记录这三个drawBitMap的时间时,我发现它需要大约50ms
代码中是否存在重大错误.将Bitmap.Config更改为RGB_565会将时间缩短到8毫秒左右,但背景不可见,我在路径周围有一个黑框
画布在透明度上非常慢.
您可以尝试切换到OpenGL ES或尽可能少透明地设计内容,这样您就可以尽可能频繁地使用RGB_565.
总结以上是内存溢出为你收集整理的使用ARGB_8888时,Android DrawBitMap非常慢全部内容,希望文章能够帮你解决使用ARGB_8888时,Android DrawBitMap非常慢所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)