提高android应用的效率--主要讲解listview的优化
摘要:
Adapter是listview和数据源间的中间人。当每条数据进入可见区域时,adapter的getview()会被调用,返回代表具体数据的视图。触摸滚动时,频繁调用。支持成百上千条数据。下面为显示每条数据的xml文件:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:orientation="horizontal"><ImageView android:id="@+id/icon"android:layout 阅读全文
posted @ 2011-08-03 21:46 java豆子 阅读(14740) 评论(0) 推荐(1) 编辑