關(guān)于ListView:
ListView是Android開發(fā)中最常用的控件之一,作用是將超出屏幕顯示范圍的大量數(shù)據(jù)通過(guò)列表的方式填充在屏幕中,允許用戶通過(guò)手指滑動(dòng)的方式將屏幕外的數(shù)據(jù)滾動(dòng)到屏幕內(nèi)顯示出來(lái)悦荒,同時(shí)屏幕上原有的數(shù)據(jù)則會(huì)滾動(dòng)出屏幕。比如聯(lián)系人列表睁冬。
ListView必須配合相應(yīng)的數(shù)據(jù)適配器使用蝌诡,據(jù)適配器的作用是把復(fù)雜的數(shù)據(jù)(數(shù)組、鏈表枫吧、集合浦旱、數(shù)據(jù)庫(kù)等)填充在指定的視圖界面上。也就是說(shuō)九杂,ListView只是一個(gè)視圖颁湖,而這個(gè)視圖要顯示的數(shù)據(jù),都儲(chǔ)存在數(shù)據(jù)適配器中例隆。
數(shù)據(jù)適配器是連接數(shù)據(jù)源和視圖界面的橋梁甥捺。
實(shí)現(xiàn)ListView的大致步驟是:
- 新建數(shù)據(jù)適配器。
- 添加數(shù)據(jù)源的到數(shù)據(jù)適配器
- 視圖加載適配器镀层。
Talk is Cheap镰禾,let`s Code!
下面分別使用兩種常用數(shù)據(jù)適配器ArrayList和SimpleList來(lái)實(shí)現(xiàn)ListView
1. 使用ArrayList來(lái)實(shí)現(xiàn)ListView:
ArrayList又叫做數(shù)組適配器,用于綁定單一格式的數(shù)據(jù)吴侦,數(shù)據(jù)源可以是集合或數(shù)組屋休。
下面看一個(gè)Demo
首先需要在xml文件中定義一個(gè)ListView,代碼如下:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
</LinearLayout>
然后再java代碼中添加數(shù)據(jù)并實(shí)現(xiàn)這個(gè)ListView备韧,代碼如下:
public class MainActivity extends AppCompatActivity {
private ListView listView;
//聲明一個(gè)ArrayAdapter數(shù)據(jù)適配器
private ArrayAdapter<String> arrayAdapter;
//定義一個(gè)字符串?dāng)?shù)組劫樟,將數(shù)據(jù)源添加到這個(gè)數(shù)組當(dāng)中
private String[] arrayData = {"list1", "list2", "list3", "list4",
"list5", "list6", "list7", "list8",
"list9", "list10", "list11", "list12",
"list13", "list14", "list15","list16"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (ListView) findViewById(R.id.listView);
/*將數(shù)據(jù)源添加到適配器,這里有三個(gè)參數(shù)织堂。
1. 第一個(gè)參數(shù)是Context(上下文)叠艳,這里就是當(dāng)前這個(gè)Activity,填入this易阳。
2. 第二個(gè)參數(shù)是當(dāng)前ListView加載的每一個(gè)列表項(xiàng)所對(duì)應(yīng)的布局文件附较,
這里使用android系統(tǒng)提供的一個(gè)簡(jiǎn)單的布局文件。
3. 第三個(gè)參數(shù)就是要加載到數(shù)據(jù)適配器的數(shù)據(jù)源闽烙,這里就是剛剛我們定義的arrayData翅睛。*/
arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, arrayData);
//最后為L(zhǎng)istView視圖綁定適配器即可
listView.setAdapter(arrayAdapter);
}
}
代碼非常簡(jiǎn)單,唯一需要注意的就是ArrayAdapter的三個(gè)參數(shù)黑竞。
看一下Demo效果:
可以看到每一列都有數(shù)據(jù)顯示捕发,并且可以滑動(dòng)。ListView之ArrayAdapter達(dá)成很魂!
2. 使用SimpleAdapter來(lái)實(shí)現(xiàn)ListView(實(shí)現(xiàn)一個(gè)有圖片和文字的列表):
SimpleAdapter又叫做簡(jiǎn)單適配器扎酷,但是其實(shí)他的功能比ArrayAdapter要更強(qiáng)大一些,可以實(shí)現(xiàn)自定義的item視圖遏匆,主要用來(lái)綁定復(fù)雜格式的數(shù)據(jù)法挨。數(shù)據(jù)源只能是特定的泛型集合。
下面還是看一個(gè)Demo
首先還是需要在xml文件中定義一個(gè)ListView幅聘,代碼和上面方法一的xml文件一樣凡纳,這里就不貼出來(lái)了。
然后來(lái)編寫java代碼:
public class MainActivity extends AppCompatActivity {
private ListView listView;
//首先還是要聲明一個(gè)SimpleAdapter適配器
private SimpleAdapter simpleAdapter;
//然后聲明一個(gè)List數(shù)組帝蒿,里面用Map數(shù)組作為填充數(shù)據(jù)源的方式
private List<Map<String, Object>> dataList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (ListView) findViewById(R.id.listView);
dataList = new ArrayList<Map<String, Object>>();
/*將數(shù)據(jù)源添加到適配器荐糜,這里有5個(gè)參數(shù)
1. 第一個(gè)參數(shù)還是Context,這里填入this葛超。
2. 第二個(gè)參數(shù)是data(數(shù)據(jù)源)暴氏,這里我們將填充數(shù)據(jù)的步驟寫成方法getData(),填入即可。
3. 第三個(gè)參數(shù)是resource绣张,也就是列表項(xiàng)的布局文件答渔,這里我們就要自己新建一個(gè)layout文件了
4. 第四個(gè)參數(shù)是frome,是Map中的鍵名
5. 第五個(gè)參數(shù)是to侥涵,綁定數(shù)據(jù)視圖中的ID沼撕,與frome形成對(duì)應(yīng)關(guān)系
simpleAdapter = new SimpleAdapter(this, getData(), R.layout.item, new String[]{"pic", "text"},
new int[]{R.id.pic, R.id.text});
//為listView綁定適配器即可
listView.setAdapter(simpleAdapter);
}
//這里我們定義一個(gè)參數(shù)用來(lái)為dataList填充數(shù)據(jù)
private List<Map<String, Object>> getData() {
for (int i = 0; i < 20; i++) {
Map<String, Object> map = new HashMap<String, Object>();
map.put("pic", R.mipmap.ic_launcher);
map.put("text", "Item List" + i);
dataList.add(map);
}
return dataList;
}
}
上面用到的item列表項(xiàng)布局文件如下:
我們?cè)诿恳粋€(gè)列表項(xiàng)中放置一個(gè)ImageView和一個(gè)TextView
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageView
android:id="@+id/pic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:src="@mipmap/ic_launcher" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="18dp"
android:text="Item"
android:textSize="15sp" />
</LinearLayout>
整個(gè)Demo就寫完了宋雏,我們來(lái)看一下Demo:
可以看到每一列都有一個(gè)圖片和一列文字,ListView之SimpleAdapter達(dá)成端朵!
完好芭。