In iOS, I can make a call like
self.layer.shouldRasterize = YES;
Is there something similar in Android in terms of rasterizing representations and, therefore, does not work out sequentially onDraw()
?
I would like the views not to be repeated over and over again in RecyclerView
order to save memory and optimize for faster scrolling.
source
share