最近學(xué)習(xí)了BaseAdapter,為了防止日久天長忘記了,在此岂膳,總結(jié)一下知識(shí)要點(diǎn),BaseAdapter本質(zhì)上與ArrayAdapter,SimpleAdapter的作用是一樣的,只不過BaseAdapter可以實(shí)現(xiàn)較為華麗的界面古程。
如何做?
- 首先新建一個(gè)安卓工程(這個(gè)就不必多說了吧!)
- 在界面布局文件中聲明一個(gè)ListView,id為lv
- 新建一個(gè)列表項(xiàng)布局
- 新建一個(gè)封裝的數(shù)據(jù)類Res
- 在主Activity中創(chuàng)建一個(gè)集合List<Res> mList
- 將數(shù)據(jù)裝入mList
- 創(chuàng)建一個(gè)繼承BaseAdapter的類mBaseAdapter喊崖,并重寫其方法
- 實(shí)例化mBaseAdapter并綁定至lv.setAdapter()方法
是不是看花眼了挣磨?我們接下來一步一步實(shí)現(xiàn)
1. 新建安卓應(yīng)用
這一步就省了
2.在布局文件中聲明ListView
<ListView
android:id="@+id/lv_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
//部分代碼
3.新建一個(gè)布局文件(.xml)
這個(gè)布局文件是作為我們的列表顯示項(xiàng)存在的,也就是說我們的列表項(xiàng)長什么樣樣就由這個(gè)布局決定荤懂,在此茁裙,我將這個(gè)布局命名為item.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/tv_itemImg"
android:layout_width="60dp"
android:layout_height="60dp"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello"
android:layout_toRightOf="@id/tv_itemImg"
android:textSize="25sp"/>
<TextView
android:id="@+id/tv_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="content"
android:layout_toRightOf="@id/tv_itemImg"
android:layout_below="@id/tv_title"
android:textSize="20sp"/>
</RelativeLayout>
以上代碼令我們建立了一個(gè)完整的列表項(xiàng)布局文件,其中包括一個(gè)圖片,兩個(gè)文本框分別代表新聞圖片节仿,新聞標(biāo)題以及內(nèi)容
4.建立一個(gè)封裝數(shù)據(jù)的類
這個(gè)類封裝我們列表項(xiàng)中控件的內(nèi)容晤锥,Image的路徑,TextView的內(nèi)容廊宪,然后這個(gè)類的每一個(gè)實(shí)例都會(huì)作為一個(gè)列表項(xiàng)的內(nèi)容一一對(duì)應(yīng)
package com.example.demo1;
import android.graphics.drawable.Drawable;
public class Res{
public int itemImg_ID;
public String title;
public String content;
public itemBean(int id,String tit,String con)
{
this.itemImg_ID=id;
this.title=tit;
this.content=con;
}
}
5.在主Activity中創(chuàng)建一個(gè)集合List<Res> mList
為什么要聲明一個(gè)List<Res>的集合呢矾瘾?注意,這個(gè)mList代表了我們的列表的內(nèi)容箭启,一個(gè)Res對(duì)象代表一個(gè)列表項(xiàng)的內(nèi)容壕翩,列表的列表項(xiàng)數(shù)就由List<Res> mList的長度決定,這個(gè)mList的長度有多少傅寡,那么我們的列表項(xiàng)就有多少
因?yàn)閙List聲明后并未包含任何信息放妈,我們就手動(dòng)的添加一個(gè)測(cè)試信息
List<Res> mList=new ArrayList<>();
for(int i=0;i<20;i++)
{
mList.add(new Res(R.drawable.ic_launcher,"這是標(biāo)題"+i,"這是文字"+i));
//這里我們建立了一個(gè)Res數(shù)據(jù)對(duì)象并添加進(jìn)mList中
}
//現(xiàn)在mList中包含了20條數(shù)據(jù)
//部分代碼
經(jīng)過以上代碼的處理北救,mList中包含了我們需要建立的列表的內(nèi)容。但是現(xiàn)在mList還是一個(gè)普通的List,與列表內(nèi)容沒有任何關(guān)系芜抒,接下來就要?jiǎng)?chuàng)建一個(gè)BaseAdapter當(dāng)做mList與ListView之間的橋梁了扭倾!
6.新建一個(gè)BaseAdapter
package com.example.demo1;
import java.util.List;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class mBaseAdapter extends BaseAdapter {
//數(shù)據(jù)源
private List<Res> mList;
private LayoutInflater layout;
public mBaseAdapter(Context c,List<Res> l){
//將數(shù)據(jù)源綁定
mList=l;
layout=LayoutInflater.from(c);
}
@Override
//返回總共條數(shù)
public int getCount() {
// TODO Auto-generated method stub
return mList.size();
}
@Override
//返回指定id的條目
public Object getItem(int arg0) {
// TODO Auto-generated method stub
return mList.get(arg0);
}
@Override
//返回指定id
public long getItemId(int arg0) {
// TODO Auto-generated method stub
return arg0;
}
/*
* 如果以上三個(gè)方法沒有重寫,getView就無法正常執(zhí)行挽绩。
* getCount()返回的值是確定listview中需要顯示幾條信息
* 也就是getView需要執(zhí)行幾次膛壹。
* */
@Override
public View getView(int arg0, View arg1, ViewGroup arg2) {
View v=layout.inflate(R.layout.item, null);
ImageView img=(ImageView)v.findViewById(R.id.tv_itemImg);
TextView title=(TextView)v.findViewById(R.id.tv_title);
TextView content=(TextView)v.findViewById(R.id.tv_content);
img.setImageResource(mList.get(arg0).itemImg_ID);
title.setText(mList.get(arg0).title);
content.setText(mList.get(arg0).content);
return v;
}
7.在主Activity中實(shí)例化mBaseAdapter
ListView lv=(ListView)findViewById(R.id.lv_main);
lv.setAdapter(new MBase(this, list));
就這樣,我們就可以完成這個(gè)列表了,但是我們?cè)趍BaseAdapter 中重寫的getView()并不好唉堪,效率上與優(yōu)化過的BaseAdapter相差甚遠(yuǎn)模聋,由于這是基礎(chǔ)教程,故此不提及這種方法唠亚,有興趣的同學(xué)自己谷歌即可链方。