Android draw path

半城伤御伤魂 提交于 2019-12-04 12:19:01

问题


It is not good idea to construct path object every time when call Draw method. Is it better to keep path object and clear/set points every time?

Update: One more question - what is difference between 'reset' and 'rewind' path object?


回答1:


Yes, it is better to reset the path and set the points rather than instatiating a new one. This prevents excessive allocation of memory, which can lead to frequent garbage collection. When the GC runs the graphics may pause for a moment, especially on older devices so you want to keep this to a minimum.

The reset() and rewind() methods both have pretty much the same effect, except that rewind() keeps the internal data structure intact, which can improve performance particularly if your path always has the same number of points.



来源:https://stackoverflow.com/questions/12530684/android-draw-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!