码迷,mamicode.com
首页 > 移动开发 > 详细

Android中关于在onDrow或者onMeasure中创建对象提示Avoid object allocations during draw/layout operations (preallocate and reuse instead) 问题

时间:2014-05-27 01:04:01      阅读:663      评论:0      收藏:0      [点我收藏+]

标签:android   style   c   class   java   ext   

     在实际开发中Android中自带的控件有时无法满足我们的需求,这时就需要我们重写控件来实现我们想要的功能。

还有个关于UI体验的问题,就是在onDraw()函数中最好不要去创建对象,否则就提示下面的警告信息:因为onDraw()调用频繁,不断进行创建和垃圾回收会影响UI显示的性能

例如:

protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  Paint mpatin = new Paint();
  mpatin.setTextAlign(Align.CENTER);
  mpatin.setColor(mcolor);
  mpatin.setTextSize(mtextsize);
  canvas.drawText(mtext, canvas.getWidth() / 2,
  (canvas.getHeight() / 2) + 6, mpatin);
}

Android中关于在onDrow或者onMeasure中创建对象提示Avoid object allocations during draw/layout operations (preallocate and reuse instead) 问题,布布扣,bubuko.com

Android中关于在onDrow或者onMeasure中创建对象提示Avoid object allocations during draw/layout operations (preallocate and reuse instead) 问题

标签:android   style   c   class   java   ext   

原文地址:http://www.cnblogs.com/Free-Thinker/p/3736287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!