File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
androidweekly/高性能ListViews Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
---
3
3
4
4
> * 原文链接 : [ Performance ListViews] ( http://willowtreeapps.com/blog/performance-listviews/?utm_source=Android+Weekly&utm_campaign=038d344835-Android_Weekly_178&utm_medium=email&utm_term=0_4eb677ad19-038d344835-337955857 )
5
- * 原文作者 : [ Brandon] ( ttp ://willowtreeapps.com/blog/)
5
+ * 原文作者 : [ Brandon] ( http ://willowtreeapps.com/blog/)
6
6
* 译文出自 : [ 开发技术前线 www.devtf.cn。未经允许,不得转载 !] ( http://www.devtf.cn )
7
7
* 译者 : [ liuling07] ( https://github.com/liuling07 )
8
- * 校对者: [ 这里校对者的github用户名 ] ( github链接 )
9
- * 状态 : 未完成 / 校对中 / 完成
8
+ * 校对者: [ desmond1121 ] ( https://github.com/desmond1121 )
9
+ * 状态 : 完成
10
10
11
11
列表展示功能几乎在所有app中都会被用到,使用列表可以很方便的展示一些列表项,比如菜谱、联系人,或者任意类型的类别。所以Android有一个内置的方式来展示此类型的数据,也是在情理之中的。RecyclerView是一种最新的展示列表数据的方式,它非常高效,因为它重用视图而不是每一行出现在屏幕上都重新创建。在RecyclerView出现之前,我们可以使用ListView,即使到了现在,ListView也是广泛的被开发者所使用。虽然ListView也是可以回收视图的,但它也一直都是Android中最容易被错误使用的一个控件。我们知道在此之前这个话题已经被写过无数遍了,但是今天我还是要在博客中提出来,因为我们仍然发现很多app在错误的使用它们。
12
12
You can’t perform that action at this time.
0 commit comments