最近在做一個聊天的小應用,我負責聊天窗口部分,弄了個簡單的有點丑的“汽泡短信”聊天模式~先附上最終效果圖:
以下是摸索的過程,與大家分享:
從聊天的模式可以看出整個窗口應該是一個ListActivity,其中每一行用聊天的內容填充ListView。
ListView可以使用最基本的ArrayAdapter填充,但是每一行只能填充文本。我們的聊天內容除了文本,還希望有個頭像(當然後期還可以再添聊天時間、用戶名之類的~),首相想到的是使用SimpleAdapter。
本文源碼下載:
免費下載地址在 http://linux.linuxidc.com/
用戶名與密碼都是www.linuxidc.com
具體下載目錄在 /2012年資料/1月/1日/Android開發教程:ListView使用SimpleAdapter適配器源碼/
這是第一個Demo的代碼:
- public class TryChatPopActivity extends Activity {
- ListView itemlist = null;
- List<Map<String, Object>> list;
-
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- itemlist = (ListView) findViewById(R.id.chatlist);
- refreshListItems();
- }
- private void refreshListItems() {
- list = buildListForSimpleAdapter();
- //實例適配器
- SimpleAdapter chat = new SimpleAdapter(this, list, R.layout.chata,
- new String[] {"chatportrait","chatinfo"}, new int[] {R.id.imgPortraitA,R.id.txvInfo});
- itemlist.setAdapter(chat);
- itemlist.setSelection(0);
- }
-
- //用來實例化列表容器的函數
- private List<Map<String, Object>> buildListForSimpleAdapter() {
- List<Map<String, Object>> list = new ArrayList<Map<String, Object>>(2);
- ImageView imgA=(ImageView)findViewById(R.id.imgPortraitA);
- //向列表容器中添加數據(每列中包括一個頭像和聊天信息)
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("chatportrait",imgA);
- map.put("chatinfo", "嗨~");
- list.add(map);
-
- map = new HashMap<String, Object>();
- map.put("chatportrait",imgA);
- map.put("chatinfo", "嗨~\n你好!");
- list.add(map);
-
- map = new HashMap<String, Object>();
- map.put("chatportrait",imgA);
- map.put("chatinfo", "嗨~\n你好!\n我是小魏~");
- list.add(map);
-
- return list;
- }
- }
其中 chata 布局文件如下:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:paddingTop="5px"
- >
- <ImageView
- android:layout_width="42px"
- android:layout_height="42px"
- android:layout_gravity="bottom"
- android:id="@+id/imgPortraitA"
- android:background="@drawable/portraita"
- />
- <TextView android:id="@+id/txvInfo"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingTop="5px"
- android:paddingBottom="5px"
- android:paddingLeft="5px"
- android:textColor="@android:color/black"
- android:textSize="18dip"
- android:background="@drawable/chatbg"></TextView>
- </LinearLayout>
這裡最關鍵是嘗試定義和使用SimpleAdapter適配器:
- SimpleAdapter chat = new SimpleAdapter(this, list, R.layout.chata,
- new String[] {"chatportrait","chatinfo"}, new int[] {R.id.imgPortraitA,R.id.txvInfo});
其中第一個參數是context,即當前的Activity;第二個參數是要去填充ListView每一行內容的list;第三個參數resource是ListView每一行填充的布局文件。