Any possible way to rasterize views in Android, as in iOS?

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 RecyclerVieworder to save memory and optimize for faster scrolling.

+4
source share

Source: https://habr.com/ru/post/1613754/


All Articles