Is there a way to improve performance ScrollView?
This is just a theoretical question - I know what I can use ListViewwhen I have data that can easily be placed in a list. But sometimes you just need to use ScrollView ...
Everything is fine when you place a TextView inside it. But when you post multiple ImageViews with different styles, etc. ScrollView scroll performance disappears ... It looks like the whole view and all its children are redrawn after moving the ScrollView.
Maybe there is a way to rotate the drawing cache?
EDIT: To be specific - the question is to optimize scroll fluency.
Kocus source
share