android應用開發全程實錄-你有多熟悉listview? getView重寫 inflate使用

來源:互聯網
上載者:User

今天給大家帶來《android應用開發全程實錄》中關於listview和adatper中的部分。包括listview的基本使用,listview的最佳化等。

我們經常會在應用程式中使用列表的形式來展現一些內容,所以學好ListView是非常必需的。ListView也是Android中比較難以使用的控制項,這節內容就將詳細解讀ListView的用法。

一個ListView通常有兩個職責。

(1)將資料填充到布局。

(2)處理使用者的選擇點擊等操作。

第一點很好理解,ListView就是實現這個功能的。第二點也不難做到,在後面的學習中讀者會發現,這非常簡單。

一個ListView的建立需要3個元素。

(1)ListView中的每一列的View。

(2)填入View的資料或者圖片等。

(3)串連資料與ListView的適配器。

也就是說,要使用ListView,首先要瞭解什麼是適配器。適配器是一個串連資料和AdapterView(ListView就是一個典型的AdapterView,後面還會學習其他的)的橋樑,通過它能有效地實現資料與AdapterView的分離設定,使AdapterView與資料的綁定更加簡便,修改更加方便

Android中提供了很多的Adapter,表4-5列出了常用的幾個。

表4-5 常用適配器

Adapter

含義

ArrayAdapter<T>

用來綁定一個數組,支援泛型操作

SimpleAdapter

用來綁定在xml中定義的控制項對應的資料

SimpleCursorAdapter

用來綁定遊標得到的資料

BaseAdapter

通用的基礎適配器

 

 其實適配器還有很多,要注意的是,各種Adapter只不過是轉換的方式和能力不一樣而已。下面就通過使用不同的Adapter來為ListView綁定資料(SimpleCursorAdapter暫且不講,後面講SQLite時會介紹)。

4.12.1 ListView使用ArrayAdapter

用ArrayAdapter可以實現簡單的ListView的資料繫結。預設情況下,ArrayAdapter綁定每個對象的toString值到layout中預先定義的TextView控制項上。ArrayAdapter的使用非常簡單。

執行個體:

工程目錄:EX_04_12

在布局檔案中加入一個ListView控制項。

<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<!-- 添加一個ListView控制項 -->
<ListView
    android:id="@+id/lv"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    />            
</LinearLayout>

複製代碼

然後在Activity中初始化。

publicclass MyListView extends Activity {
    
privatestaticfinal String[] strs = new String[] {
    "first", "second", "third", "fourth", "fifth"
    };//定義一個String數組用來顯示ListView的內容
private ListView lv;

/** Called when the activity is first created. */
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

lv = (ListView) findViewById(R.id.lv);//得到ListView對象的引用
/*為ListView設定Adapter來綁定資料*/
lv.setAdapter(new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_1, strs));

    }
}

複製代碼

 

                                                                               

▲圖4-29 ListView使用ArrayAdapter運行效果

代碼非常的簡單,運行效果4-29所示。

 

分析一下使用的步驟。

(1)定義一個數組來存放ListView中item的內容。

(2)通過實現ArrayAdapter的建構函式來建立一個ArrayAdapter的對象。

(3)通過ListView的setAdapter()方法綁定ArrayAdapter。

其中第二步有必要說一下的是,ArrayAdapter有多個建構函式,例子中實現的是最常用的一種。第一個參數為上下文,第二個參數為一個包含TextView,用來填充ListView的每一行的布局資源ID。第三個參數為ListView的內容。其中第二個參數可以自訂一個layout,但是這個layout必須要有TextView控制項。通常我們使用Android提供的資源,除了例子中所用的,常用的還有如下幾種,可實現帶RadioButton和CheckBox的ListView。

(1)通過指定android.R.layout.simple_list_item_checked這個資源,實現帶選擇框的ListView。需要用setChoiceMode()方法設定選擇為多選還是單選,否則將不能實現選擇效果,運行效果4-30所示。

實現代碼如下:

lv.setAdapter(new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_checked, strs));
lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

複製代碼

 (2)通過指定android.R.layout.simple_list_item_multiple_choice這個資源實現帶CheckBox的ListView。同樣的,需要用setChoiceMode()方法來設定單選或者多選,運行效果4-31所示。

實現代碼如下:

lv.setAdapter(new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_multiple_choice, strs));
lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

複製代碼

(3)通過指定android.R.layout.simple_list_item_single_choice這個資源實現帶RadioButton的ListView。這裡要注意的是,這裡並不是指定了單選。是多選還是單選要通過setChoiceMode()方法來指定,運行效果4-32所示。

實現代碼如下:

 

lv.setAdapter(newArrayAdapter<String>(this,

android.R.layout.simple_list_item_single_choice,strs));

lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

複製代碼

 

    

 

▲圖4-30 帶選擇框的ListView                               ▲圖4-31 帶CheckBox的ListView                              ▲圖4-32 帶RadioButton的ListView

 

 在前面講到過,ListView的職責除了填充資料外,還要處理使用者的操作。通過如下的代碼就可以為ListView綁定一個點擊監聽器,點擊後在標題列顯示點擊的行數。

lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            publicvoid onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {
                    //點擊後在標題上顯示點擊了第幾行
                    setTitle("你點擊了第"+arg2+"行");
            }
        });

複製代碼

 

4.12.2 ListView使用SimpleAdapter

很多時候需要在列表中展示一些除了文字以外的東西,比片等。這時候可以使用SimpleAdapter。SimpleAdapter的使用也非常簡單,同時它的功能也非常強大。可以通過它自訂ListView中的item的內容,比片、多選框等。看一個例子,實現一個每一行都有一個ImageView和TextView的ListView。先看一下運行效果,4-34所示。

 

 

▲圖4-34 帶表徵圖的ListView

 

首先在布局檔案中增加一個ListView控制項。

 還需要定義一個ListView中每一行的布局,用RelativeLayout來實現一個帶兩行字和一個圖片的布局。

item.xml:

<?xmlversion="1.0"encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<ImageView
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ItemImage"
/>
<TextView
android:id="@+id/ItemTitle"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textSize="20sp"
/>
<TextView
android:id="@+id/ItemText"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_below="@+id/ItemTitle"
/>
</RelativeLayout>

複製代碼

 配置完畢,就可以在Java代碼中為ListView綁定資料。

publicclass MyListViewSimple extends Activity {
    
    private ListView lv;
    
/** Called when the activity is first created. */
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

lv = (ListView) findViewById(R.id.lv);
/*定義一個動態數組*/
          ArrayList<HashMap<String, Object>> listItem = new ArrayList<HashMap<String,     Object>>();
/*在數組中存放資料*/
for(int i=0;i<10;i++)  
        {  
            HashMap<String, Object> map = new HashMap<String, Object>();  
            map.put("ItemImage", R.drawable.icon);//加入圖片
            map.put("ItemTitle", "第"+i+"行");  
            map.put("ItemText", "這是第"+i+"行");  
            listItem.add(map);  
        } 

        SimpleAdapter mSimpleAdapter = new SimpleAdapter(this,listItem,//需要繫結資料
                R.layout.item,//每一行的布局
//動態數組中的資料來源的鍵對應到定義布局的View中
new String[] {"ItemImage","ItemTitle", "ItemText"},   
newint[] {R.id.ItemImage,R.id.ItemTitle,R.id.ItemText}  
            );

lv.setAdapter(mSimpleAdapter);//為ListView綁定適配器

lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            publicvoid onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {
                setTitle("你點擊了第"+arg2+"行");//設定標題列顯示點擊的行
                
            }
        });
    }
}

複製代碼

 使用simpleAdapter的資料一般都是用HashMap構成的列表,列表的每一節對應ListView的每一行。通過SimpleAdapter的建構函式,將HashMap的每個鍵的資料對應到布局檔案中對應控制項上。這個布局檔案一般根據自己的需要來自己定義。梳理一下使用SimpleAdapter的步驟。

(1)根據需要定義ListView每行所實現的布局。

(2)定義一個HashMap構成的列表,將資料以索引值對的方式存放在裡面。

(3)構造SimpleAdapter對象。

(4)將LsitView綁定到SimpleAdapter上。

4.12.3 ListView使用BaseAdapter與ListView的最佳化

在ListView的使用中,有時候還需要在裡面加入按鈕等控制項,實現單獨的操作。也就是說,這個ListView不再只是展示資料,也不僅僅是這一行要來處理使用者的操作,而是裡面的控制項要獲得使用者的焦點。讀者可以試試用SimpleAdapter添加一個按鈕到ListView的條目中,會發現可以添加,但是卻無法獲得焦點,點擊操作被ListView的Item所覆蓋。這時候最方便的方法就是使用靈活的適配器BaseAdapter了。

 

                                                                             

 

▲圖4-35 BaseAdapter中的方

使用BaseAdapter必須寫一個類繼承它,同時BaseAdapter是一個抽象類別,繼承它必須實現它的方法。BaseAdapter的靈活性就在於它要重寫很多方法,看一下有哪些方法,4-35所示為繼承自BaseAdapter的SpeechListAdapter所實現的方法,其中最重要的即為getView()方法。這些方法都有什麼作用呢?我們通過分析ListView的原理來為讀者解答。

 

當系統開始繪製ListView的時候,首先調用getCount()方法。得到它的傳回值,即ListView的長度。然後系統調用getView()方法,根據這個長度逐一繪製ListView的每一行。也就是說,如果讓getCount()返回1,那麼只顯示一行。而getItem()和getItemId()則在需要處理和取得Adapter中的資料時調用。那麼getView如何使用呢?如果有10000行資料,就繪製10000次?這肯定會極大的消耗資源,導致ListView滑動非常的慢,那應該怎麼做呢?通過一個例子來講解如何在使用BaseAdapter的時候最佳化ListView的顯示。例子中將上一節中的ImageView換成Button,並且處理Button的點擊事件,其中對ListView的顯示做了最佳化。

 

布局檔案和上一例類同,讀者可以在光碟片的工程目錄中查看,這裡只給出Activity類。

publicclass MyListViewBase extends Activity {
    
    private ListView lv;
    /*定義一個動態數組*/
    ArrayList<HashMap<String, Object>>listItem;

/** Called when the activity is first created. */
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

lv = (ListView) findViewById(R.id.lv);
        MyAdapter mAdapter = new MyAdapter(this);//得到一個MyAdapter對象
lv.setAdapter(mAdapter);//為ListView綁定Adapter
/*為ListView添加點擊事件*/
lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            publicvoid onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {
        Log.v("MyListViewBase", "你點擊了ListView條目" + arg2);//在LogCat中輸出資訊
                
            }
        });

    }
/*添加一個得到資料的方法,方便使用*/
private ArrayList<HashMap<String, Object>> getDate(){
    
    ArrayList<HashMap<String, Object>> listItem = new ArrayList<HashMap<String,     Object>>();
    /*為動態數組添加資料*/
    for(int i=0;i<30;i++)  
         {  
             HashMap<String, Object> map = new HashMap<String, Object>();  
             map.put("ItemTitle", "第"+i+"行");  
             map.put("ItemText", "這是第"+i+"行");  
             listItem.add(map);  
         } 
        return listItem;
    
    }
/*
     * 建立一個類繼承BaseAdapter,實現視圖與資料的綁定
     */
privateclass MyAdapter extends BaseAdapter {
    
private LayoutInflater mInflater;//得到一個LayoutInfalter對象用來匯入布局

/*建構函式*/
public MyAdapter(Context context) {
    this.mInflater = LayoutInflater.from(context);
        }

        @Override
        publicint getCount() {
            
            return getDate().size();//返回數組的長度
        }

        @Override
        public Object getItem(int position) {
            returnnull;
        }

        @Override
        publiclong getItemId(int position) {
            return 0;
        }
        /*書中詳細解釋該方法*/
        @Override
        public View getView(finalint position, View convertView, ViewGroup parent) {
             ViewHolder holder;
            //觀察convertView隨ListView滾動情況
             Log.v("MyListViewBase", "getView " + position + " " + convertView);
            if (convertView == null) {
                     convertView = mInflater.inflate(R.layout.item,
    null);
                     holder = new ViewHolder();
                    /*得到各個控制項的對象*/
                    holder.title = (TextView) convertView.findViewById(R.id.ItemTitle);
                    holder.text = (TextView) convertView.findViewById(R.id.ItemText);
                    holder.bt = (Button) convertView.findViewById(R.id.ItemButton);
                    convertView.setTag(holder);//綁定ViewHolder對象
                   }
    else{
                    holder = (ViewHolder)convertView.getTag();//取出ViewHolder對象
                  }
            /*設定TextView顯示的內容,即我們存放在動態數組中的資料*/
            holder.title.setText(getDate().get(position).get("ItemTitle").toString());
            holder.text.setText(getDate().get(position).get("ItemText").toString());
            
            /*為Button添加點擊事件*/
             holder.bt.setOnClickListener(new OnClickListener() {
                
                @Override
                publicvoid onClick(View v) {
                Log.v("MyListViewBase", "你點擊了按鈕" + position);                                //列印Button的點擊資訊
                    
                }
            });
            
            return convertView;
        }
    
    }
/*存放控制項*/
publicfinalclass ViewHolder{
    public TextView title;
    public TextView text;
    public Button   bt;
    }
}

複製代碼

 運行效果4-36所示。還需要注意的是,Button會搶奪ListView的焦點,需要將Button設定為沒有焦點。設定非常簡單,只需要在xml的Button標籤下加入一行:android:focusable=“false”代碼就可以了。在LogCat觀察點擊後輸出的資訊,4-37所示。

            

            

▲圖4-36 使用BaseAdapter的ListVie

w

 ▲圖4-37 點擊ListView條目和Button得到的輸出

代碼中getView()方法不容易理解。其實完全可以不用所謂的convertView和ViewHolder,直接匯入布局並且設定控制項顯示的內容就可以了。但是這意味著有多少行資料就需要繪製多少行ListView,這顯然是不可取的。這裡採用了一種最佳化的方法。代碼中,在getView()方法中加入了一行log輸出convertView的內容。滾動ListView,輸出資訊4-38所示。

從圖4-38中可以看出,當啟動Activity呈現第一屏ListView的時候,convertView為零。當使用者向下滾動ListView時,上面的條目變為不可見,下面出現新的條目。這時候convertView不再為空白,而是建立了一系列的convertView的值。當又往下滾一屏的時候,發現第11行的容器用來容納第22行,第12行的容器用來容納第23行。也就是說convertView相當於一個緩衝,開始為0,當有條目變為不可見,它緩衝了它的資料,後面再出來的條目只需要更新資料就可以了,這樣大大節省了系統資料的開銷。

還可以繼續最佳化。雖然重複利用了已經繪製的view,但是要得到其中的控制項,需要在控制項的容器中通過findViewById的方法來獲得。如果這個容器非常複雜,這顯然會增加系統資源的開銷。在上面的例子中,引入了Tag的概念。或許不是最好的辦法,但是它確實能使ListView變得更流暢。代碼中,當convertView為空白時,用setTag()方法為每個View綁定一個存放控制項的ViewHolder對象。當convertView不為空白,重複利用已經建立的view的時候,使用getTag()方法擷取綁定的ViewHolder對象,這樣就避免了findViewById對控制項的層層查詢,而是快速定位到控制項。

              

▲圖4-38 滾動ListView輸出的convertView的值

總結一下,這節介紹了用BaseAdapter來綁定ListView的資料。因為BaseAdapter非常靈活,使用也相對較其他控制項麻煩。同時ListView的最佳化問題也值得讀者去研究,一個流暢的ListView會帶來更好的使用者體驗。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.