自定義List列表顯示短信內容,仿iPhone短信氣泡
短信消息實體類
本文源碼工程下載:
免費下載地址在 http://linux.linuxidc.com/
用戶名與密碼都是www.linuxidc.com
具體下載目錄在 /pub/Android源碼集錦/2011年/11月/仿iPhone 氣泡短信 自定義list適配器實現/
- package com.android;
-
- /**
- * 消息實體類
- *
- * @author Administrator
- *
- */
- public class DetailEntity
- {
-
- // 短信聯系人
- private String name;
- // 短信日期
- private String date;
- // 短信內容
- private String text;
- // 布局ID
- private int layoutID;
-
- public String getName()
- {
- return name;
- }
-
- public void setName(String name)
- {
- this.name = name;
- }
-
- public String getDate()
- {
- return date;
- }
-
- public void setDate(String date)
- {
- this.date = date;
- }
-
- public String getText()
- {
- return text;
- }
-
- public void setText(String text)
- {
- this.text = text;
- }
-
- public int getLayoutID()
- {
- return layoutID;
- }
-
- public void setLayoutID(int layoutID)
- {
- this.layoutID = layoutID;
- }
-
- public DetailEntity()
- {
- }
-
- public DetailEntity(String name, String date, String text, int layoutID)
- {
- super();
- this.name = name;
- this.date = date;
- this.text = text;
- this.layoutID = layoutID;
- }
-
- }