`
lansuiyun
  • 浏览: 28257 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

android ListView之一:Adapter介紹與使用(转)

 
阅读更多

 

点击查看原网页

ListView是在Android很常見的一種視圖,ListView不論在電話簿中還是觀看大量的列表資料,都是會用得到。

ListView的使用需要搭配Adapter,Adapter是用來連接資料和ListView的,Adapter除了會用到ListView中,另外會用到還有Spinner(類似下拉選單)的這個元件中。在Google IO 2009的其中一張投影片中,可以很清楚的看到其中的關係圖:
listview1
從這張圖就可以看到Adapter基本上會分成Cursor類和ArrayList類的。Cursor和資料庫或目前電話中的資料有關,例如要抓出目前電話簿中的聯絡人資料,用的就是Cursor的Adapter,而自己在程式中建立的陣列資料,用的就會是ArrayList類的Adapter。
最常用的有幾種Adapter:
  • ArrayAdapter:將一組數組連繫到ListView
  • SimpleAdapter:適用於自訂ListView外觀的應用場合
  • BaseAdapter:抽象類別,所以有多個方法需要實作。適用於需要自訂ListView外觀等靈活應用的場合。
  • SimpleCursorAdapter:將一組現有的資料庫或聯絡人等ContentProvider的資料查詢的結果連繫到ListView中
首先,要使用ListView可以用ListView這個UI組件,放置到目前的Activity中。另一個可以用的方式,是直接繼承ListActivity,這是一個Activity的子類,其中就會包含一個全螢幕的ListView物件。ListActivity用法比較簡單:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
public class ListDemo1 extends ListActivity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 
 //注意:不能使用main中的layout,用了會出現錯誤
 //setContentView(R.layout.main);
 
 setListAdapter(new ArrayAdapter<String>(this,
 android.R.layout.simple_list_item_1, mStrings));
 
 //啟用按鍵過濾功能
 getListView().setTextFilterEnabled(true);
 }
 
 private static final String[] mStrings = new String[] {
 "大餅包小餅", "蚵仔煎", "東山鴨頭", "臭豆腐", "潤餅",
 "豆花", "青蛙下蛋","豬血糕", "大腸包小腸", "鹹水雞",
 "烤香腸","車輪餅","珍珠奶茶","鹹酥雞","大熱狗",
 "炸雞排","山豬肉","花生冰","剉冰","水果冰",
 "包心粉圓","排骨酥","沙茶魷魚","章魚燒","度小月",
 "aaa","abc","bbb","bcd","123"
 };
}

 

第8行:這個是對照一般的Activity中有的setContentView方法,因為是ListActivity所以不需要,用了也會有錯誤訊息。
第10行:用setListAdapter方法設定一個ArrayAdapter
第14行:按鍵過濾功能,因為List中的項目有可能很多,像這個範例你按下鍵盤中的a,就會出現以a開頭的項目,方便找到項目
第18~25行:一些要放到List中的字串值
假設是在Activity中除了ListView之外,還要放入其他的組件時,這時候就需要在Activity中加入一個ListView組件,利用這個組件的setAdapter來連接Adapter,範例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
public class ListDemo2 extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 
 //使用main中的layout
 setContentView(R.layout.main);
 //找到listview組件
 ListView list = (ListView) findViewById(R.id.listView1);
 
 //listview物件使用setAdapter方法(比對ListActivity是用setListAdapter)
 list.setAdapter(new ArrayAdapter<String>(this,
 android.R.layout.simple_list_item_1, mStrings));
 
 //啟用按鍵過濾功能(直接用listview物件,不需要getListView方法)
 list.setTextFilterEnabled(true);
 }
 
 private static final String[] mStrings = new String[] {
 "大餅包小餅", "蚵仔煎", "東山鴨頭", "臭豆腐", "潤餅",
 "豆花", "青蛙下蛋","豬血糕", "大腸包小腸", "鹹水雞",
 "烤香腸","車輪餅","珍珠奶茶","鹹酥雞","大熱狗",
 "炸雞排","山豬肉","花生冰","剉冰","水果冰",
 "包心粉圓","排骨酥","沙茶魷魚","章魚燒","度小月",
 "aaa","abc","bbb","bcd","123"
 };
}

 

值得一提的是在ArrayAdapter中有一個android定義好的內建list樣式 - "android.R.layout.simple_list_item_1",注意這並不是我們定義的,在android系統中預設就有存在了。其中常用的的這些樣式如下所列:
  1. android.R.layout.simple_list_item_1:一行text
  2. android.R.layout.simple_list_item_2:一行text較大,一行text較小
  3. android.R.layout.simple_list_item_single_choice:單選
  4. android.R.layout.simple_list_item_multiple_choice:多選按鈕
  5. android.R.layout.simple_list_item_checked:勾選盒
第1個剛剛有用了,事實上第3,4,5個也是直接換上去就可以看到了,只不過還沒有實作選中後的處理方法。
第2個android.R.layout.simple_list_item_2就比較麻煩了,原因是ArrayAdapter並不支援傳入兩個字串參數值,所以要改用SimpleAdapter,而且傳入的數值型態要改為ArrayList才可以,下面的範例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
public class ListDemo3 extends ListActivity {
 /** Called when the activity is first created. */
 ArrayList<HashMap<String,String>> list = new ArrayList<HashMap<String,String>>();
 private SimpleAdapter adapter;
 
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 
 //把資料加入ArrayList中
 for(int i=0; i<mPlaces.length; i++){
 HashMap<String,String> item = new HashMap<String,String>();
 item.put( "food", mFoods[i]);
 item.put( "place",mPlaces[i] );
 list.add( item );
 }
 
 //新增SimpleAdapter
 adapter = new SimpleAdapter( 
 this, 
 list,
 android.R.layout.simple_list_item_2,
 new String[] { "food","place" },
 new int[] { android.R.id.text1, android.R.id.text2 } );
 
 //ListActivity設定adapter
 setListAdapter( adapter );
 
 //啟用按鍵過濾功能,這兩行資料都會進行過濾
 getListView().setTextFilterEnabled(true);
 }
 
 private static final String[] mPlaces = new String[] {
 "台北市", "新北市", "台南市", "高雄市", "苗粟縣",
 "台北市", "新北市", "台南市", "高雄市", "苗粟縣",
 "台北市", "新北市", "台南市", "高雄市", "苗粟縣",
 "台北市", "新北市", "台南市", "高雄市", "苗粟縣",
 "台北市", "新北市", "台南市", "高雄市", "苗粟縣",
 "台北市", "新北市", "789", "cde", "abc"
 };
 
 private static final String[] mFoods = new String[] {
 "大餅包小餅", "蚵仔煎", "東山鴨頭", "臭豆腐", "潤餅",
 "豆花", "青蛙下蛋","豬血糕", "大腸包小腸", "鹹水雞",
 "烤香腸","車輪餅","珍珠奶茶","鹹酥雞","大熱狗",
 "炸雞排","山豬肉","花生冰","剉冰","水果冰",
 "包心粉圓","排骨酥","沙茶魷魚","章魚燒","度小月",
 "aaa","abc","bbb","bcd","123"
 };
}

 

執行的結果如下:
listview2
如果不要用android內附的simple_list_item_2,改用自己定義的樣式,要怎麼作呢?像上面的範例,再加上一個評分的字串在地點的旁邊。首先先製作一個給List的項目用的layout,如下的xml,取名為mylistview1.xml。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_height="match_parent" 
 android:layout_width="fill_parent" 
 android:orientation="vertical">
 <TextView android:text="TextView" 
 android:id="@+id/textView1" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_marginLeft="6dip"
 android:layout_marginTop="6dip" 
 android:textAppearance="?android:attr/textAppearanceLarge">
 </TextView>
 <LinearLayout android:layout_height="wrap_content" 
 android:layout_width="wrap_content" 
 android:id="@+id/linearLayout1" 
 android:orientation="horizontal">
 <TextView android:id="@+id/textView2" 
 android:text="TextView" 
 android:layout_height="wrap_content" 
 android:layout_width="wrap_content" 
 android:textAppearance="?android:attr/textAppearanceSmall">
 </TextView>
 <TextView android:text="TextView" android:id="@+id/textView3" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:textAppearance="?android:attr/textAppearanceSmall" 
 android:layout_marginLeft="6dip">
 </TextView>
 </LinearLayout>
</LinearLayout>
 

 

接下來要改一下程式碼,改用自己定義的item layout,利用R.java裡面的定義就行了(下面程式碼省略了rating這個sting array的定義,記得加上):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//把資料加入ArrayList中
 for(int i=0; i<mPlaces.length; i++){
 HashMap<String,String> item = new HashMap<String,String>();
 item.put( "food", mFoods[i]);
 item.put( "place","地點:"+mPlaces[i] );
 item.put("rating", "評分:"+mRatings[i]+" 星");
 list.add( item );
 }
 
 //新增SimpleAdapter
 adapter = new SimpleAdapter( 
 this, 
 list,
 R.layout.mylistview1, 
 new String[] { "food","place","rating" },
 new int[] { R.id.textView1, R.id.textView2, R.id.textView3 } );

 

 

執行的結果如下:

listview3

下一步,加上圖 片吧…沒圖片很難有真相,圖片需要先放到res/drawable-xxxx目錄中(這裡只有放到res/drawable-hdpi中),抓取圖片用R.drawable.pic,不過因為HashMap的value部份需要用圖片(R.drawable.pic),是一個int的型態,所以HashMap的value部份需要改為Object,才能容得下int和string的類型。
先將用於list的項目用的layout改一下,加上圖片在標題的左邊:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_height="match_parent" 
 android:layout_width="fill_parent" 
 android:orientation="vertical">
 <LinearLayout android:layout_height="wrap_content" 
 android:layout_width="wrap_content" 
 android:id="@+id/linearLayout1" >
 <ImageView android:layout_height="wrap_content"
 android:id="@+id/imageView1" 
 android:layout_width="wrap_content" 
 android:src="@drawable/icon"></ImageView>
 <TextView android:text="TextView" 
 android:id="@+id/textView1" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_marginLeft="6dip"
 android:layout_marginTop="6dip" 
 android:textAppearance="?android:attr/textAppearanceLarge">
 </TextView>
 </LinearLayout>
 <LinearLayout android:layout_height="wrap_content" 
 android:layout_width="wrap_content" 
 android:id="@+id/linearLayout1" 
 android:orientation="horizontal">
 <TextView android:id="@+id/textView2" 
 android:text="TextView" 
 android:layout_height="wrap_content" 
 android:layout_width="wrap_content" 
 android:textAppearance="?android:attr/textAppearanceSmall">
 </TextView>
 <TextView android:text="TextView" android:id="@+id/textView3" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:textAppearance="?android:attr/textAppearanceSmall" 
 android:layout_marginLeft="6dip">
 </TextView>
 </LinearLayout>
</LinearLayout>
 

 

再來要改一下程式碼,加上圖片和改Hashmap的value型態為Object(部份程式碼):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
ArrayList<HashMap<String,Object>> list = new ArrayList<HashMap<String,Object>>();
 private SimpleAdapter adapter;
 
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 
 //把資料加入ArrayList中
 for(int i=0; i<mPlaces.length; i++){
 HashMap<String,Object> item = new HashMap<String,Object>();
 item.put("pic", mPics[i]);
 item.put( "food", mFoods[i]);
 item.put( "place","地點:"+mPlaces[i] );
 item.put("rating", "評分:"+mRatings[i]+" 星");
 list.add( item );
 }
 
 //新增SimpleAdapter
 adapter = new SimpleAdapter( 
 this, 
 list,
 R.layout.mylistview2,
 new String[] { "pic","food","place","rating" },
 new int[] { R.id.imageView1, R.id.textView1, R.id.textView2, R.id.textView3 } );
 
 //ListActivity設定adapter
 setListAdapter( adapter );
 
 //啟用按鍵過濾功能,這兩行都會進行過濾
 getListView().setTextFilterEnabled(true);
 }
 private static final int[] mPics=new int[]{
 R.drawable.pic1,R.drawable.pic2,R.drawable.pic3, R.drawable.pic4,R.drawable.pic5,
 R.drawable.pic1,R.drawable.pic2,R.drawable.pic3, R.drawable.pic4,R.drawable.pic5,
 R.drawable.pic1,R.drawable.pic2,R.drawable.pic3, R.drawable.pic4,R.drawable.pic5,
 R.drawable.pic1,R.drawable.pic2,R.drawable.pic3, R.drawable.pic4,R.drawable.pic5,
 R.drawable.pic1,R.drawable.pic2,R.drawable.pic3, R.drawable.pic4,R.drawable.pic5,
 R.drawable.pic1,R.drawable.pic2,R.drawable.pic3, R.drawable.pic4,R.drawable.pic5
 };
...

 

 
執行的結果如下:
listview4
寫到這裡寫得篇幅有點多了,這只是把一些基本的listview顯示資料的方式記錄下來而已,還沒真正開始進行操作。
以上圖片和文字僅供參考。

 

分享到:
评论

相关推荐

    Android中ListView+Adapter

    总之,理解并熟练掌握ListView与Adapter的使用是Android开发中的重要技能。ArrayAdapter适合简单的数据展示,SimpleAdapter能处理稍微复杂的结构,而BaseAdapter则提供了最大的灵活性,适用于各种定制需求。通过实践...

    Android listview与adapter用法

    在Android开发中,ListView是展示大量数据的一种常见方式,而Adapter则是实现ListView数据绑定的关键组件。本篇文章将详细探讨Android中的Adapter用法及其在ListView中的应用。 1. **Adapter的概念** - `Adapter`...

    Android listview例子, 自定义Adapter:含Button控件

    在Android开发中,ListView是一种非常常见且重要的组件,它用于展示大量的数据列表,通常用于创建滚动列表。在本示例中,我们关注的是如何在ListView中集成Button控件,并通过自定义Adapter来实现这一功能。这涉及到...

    Android自定义adapter的listview

    在Android开发中,ListView是一种常用的...自定义Adapter是Android开发中的核心技能之一,掌握好这一技巧,能帮助我们实现各种复杂的界面效果。通过不断实践和优化,我们可以在保证性能的同时,让用户体验更加出色。

    android的listview嵌套listview,列表嵌套列表 android studio版本

    在Android开发中,ListView是一种常用的视图组件,用于展示大量数据列表。当需求涉及列表中的每个条目本身也需要展示一个子列表时,我们就会遇到ListView的嵌套问题。本教程将详细讲解如何在Android Studio环境下...

    Android简单使用ListView和Adapter

    本教程将详细介绍如何在Android中简单使用ListView和Adapter来实现数据显示,并演示如何添加删除功能。 首先,你需要在布局文件中定义一个ListView。在XML文件中,你可以使用`&lt;ListView&gt;`标签来创建ListView,并为...

    基于Android ListView之加载使用技巧

    在Android开发中,ListView是一个非常重要的...综上所述,Android ListView的加载使用技巧涵盖了Adapter的优化、加载状态的管理以及用户体验的提升。理解并掌握这些技巧,能帮助开发者打造出更加高效、易用的列表界面。

    C# xamarin android listview简单使用

    本教程将深入探讨如何在C#中使用Xamarin.Android来实现ListView的基本操作,旨在帮助开发者快速掌握这一核心功能。 首先,我们需要理解ListView的基本结构。ListView通常与一个Adapter配合工作,Adapter是数据源和...

    Android中ListView常用方式:使用BaseAdapter

    在Android开发中,ListView是一个非常重要的组件,常用于展示大量数据列表。本篇文章将深入探讨如何在Android中使用BaseAdapter来...了解并熟练掌握BaseAdapter的使用,对于Android开发者来说是非常重要的技能之一。

    Android listview使用的简单事例

    以下是一个关于如何在Android中使用ListView的简单事例: 第一步:新建`MyListActivity`继承自`ListActivity` 在创建一个基于ListView的活动时,通常会继承`ListActivity`类,因为它为ListView提供了一些便利的方法...

    Android中ListView添加头部

    在Android应用开发中,ListView是一种常用的控件,用于展示大量数据列表。它的可滚动特性使得它在各种场景下都非常实用,比如展示联系人、菜单项等。然而,仅仅使用ListView来展示列表数据并不足够,很多时候我们...

    Android listview嵌套listview

    在Android开发中,ListView是一种常用的组件,用于展示可滚动的列表数据。然而,有时我们可能需要在一个ListView的项中再嵌套另一个ListView,这被称为ListView的嵌套。这样的设计可以用于展示复杂的数据结构,比如...

    Android ListView,GridView的Adapter封装

    在 Android中 如果使用到了 ListView 或GridView 一定要 给其 添加 适配器Adapter 但 每次 写对应的 适配器时,其中很多方法都是 重复的 , 所以我这个demo 将其封装了起来,使用的时候,只需继承 我封装的类,然后...

    Android实现的ListView-ListViewAdapter(新闻列表事例)

    综上所述,"Android实现的ListView-ListViewAdapter(新闻列表事例)"是一个涵盖了Android基础组件使用、数据绑定、事件处理、性能优化等多个方面的实践案例,对于深入理解Android开发非常有帮助。通过这个实例,...

    android listview 自反射 adapter

    在Android开发中,ListView是一种常用的组件,用于展示可滚动的列表数据。在这个示例中,我们探讨的是如何利用Java的反射机制自动生成Adapter,从而避免手动编写基于BaseAdapter的子类。反射是Java语言中一个强大的...

    android listview 里面使用checkbox

    综上所述,要在Android的ListView中使用Checkbox,我们需要创建自定义Adapter,设计Checkbox的布局,管理复选状态,监听并处理用户操作,同时注意性能优化和状态恢复。在实际项目中,这样的实现方式能够提供灵活的...

    android ListView 网格布局

    2. 自定义Adapter:接下来,我们需要创建一个自定义的Adapter,继承自ArrayAdapter。ArrayAdapter允许我们用一个数组或列表来填充ListView。在自定义Adapter的代码中,你需要重写`getView()`方法,该方法负责为...

    Android ListView adapter不同布局

    然而,有时我们需要在同一个ListView中显示具有不同布局的项,这通常涉及到自定义Adapter的使用。"Android ListView adapter不同布局"这个主题就是关于如何在ListView中实现这样的功能。 首先,我们了解ListView的...

    androidlistview里面使用radiobutton

    为了在ListView中使用RadioButton,我们需要创建一个自定义的Adapter,比如继承自BaseAdapter。这个Adapter负责加载数据并为每个ListView项创建一个RadioButton。以下是一个基本的Adapter示例: ```java public ...

    Android-listview和recycleview的adapter的封装考虑重用性和可读性不过度抽象

    在Android开发中,ListView和RecyclerView是两种常用的列表控件,用于展示大量的数据。适配器(Adapter)是连接数据源和视图的关键组件,它负责将数据转化为用户可见的UI元素。本篇将深入探讨如何在封装ListView和...

Global site tag (gtag.js) - Google Analytics