In iOS I can do a call like
self.layer.shouldRasterize = YES;
Is there anything similar in Android in terms of rasterizing views and therefore not getting onDraw()
being called consistently?
I would like to prevent views from being drawn over and over again in a RecyclerView
to save memory and optimized for faster scrolling.