scrollingCache?

后端 未结 4 795
时光说笑
时光说笑 2020-12-15 06:22

Can anybody explain the meaning of scrolling cache in Android. I stumbled upon this word, but was unable to find the explanation, either on android official web

4条回答
  •  抹茶落季
    2020-12-15 06:51

    scrollingCache is explained in full detail in the lecture of "the world of listView".

    It's basically caches the scrolling itself so that it will move a bitmap, but according to my experience, it actually makes things much slower and take memory for nothing special.

    scrollingCache is enabled by default, at least for listView . That's why if performance is important for you, you should consider disabling it.

提交回复
热议问题