本文为Android的ListView相关知识整理,具体参考了
- 《Android群英传》第四章
- 《第一行代码》第三章
ListView是Android中最常用的控件,也是最难用的空间之一。ListView用来展示大量数据列表。
1. ListView的用法流程
1.1 新建activity_main.xml
此页面作为主页布局页面,添加了一个ListView标签,显示全部数据。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</LinearLayout>