我应该在ListView中实现Recycling还是默认行为

时间:2015-08-08 19:44:00

标签: android performance listview android-listview android-adapter

我了解了ListView,GridView或任何AdapterView中的回收,并了解了它对性能等的最佳效果。

但我不知道(回收)是任何ListView中的默认行为,还是应该覆盖某些方法并自行完成。

我也知道Customized ListView,所以在Customized ListView中是什么情况?

1 个答案:

答案 0 :(得分:1)

是的,ListView回收了此处发布的视图:

http://getbootstrap.com/css/#tables

但正如@Gautam告诉你的那样,如果你使用ViewHolder模式,你将提高CPU性能,因为ListView不会创建很多视图,它将重用它们,如下所述:

https://stackoverflow.com/a/14108676/799162