歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

仿iPhone 氣泡短信 自定義list適配器實現

自定義List列表顯示短信內容,仿iPhone短信氣泡

短信消息實體類

本文源碼工程下載:

免費下載地址在 http://linux.linuxidc.com/

用戶名與密碼都是www.linuxidc.com

具體下載目錄在 /pub/Android源碼集錦/2011年/11月/仿iPhone 氣泡短信 自定義list適配器實現/

  1. package com.android;  
  2.   
  3. /** 
  4.  * 消息實體類 
  5.  *  
  6.  * @author Administrator 
  7.  *  
  8.  */  
  9. public class DetailEntity  
  10. {  
  11.   
  12.     // 短信聯系人   
  13.     private String name;  
  14.     // 短信日期   
  15.     private String date;  
  16.     // 短信內容   
  17.     private String text;  
  18.     // 布局ID   
  19.     private int layoutID;  
  20.   
  21.     public String getName()  
  22.     {  
  23.         return name;  
  24.     }  
  25.   
  26.     public void setName(String name)  
  27.     {  
  28.         this.name = name;  
  29.     }  
  30.   
  31.     public String getDate()  
  32.     {  
  33.         return date;  
  34.     }  
  35.   
  36.     public void setDate(String date)  
  37.     {  
  38.         this.date = date;  
  39.     }  
  40.   
  41.     public String getText()  
  42.     {  
  43.         return text;  
  44.     }  
  45.   
  46.     public void setText(String text)  
  47.     {  
  48.         this.text = text;  
  49.     }  
  50.   
  51.     public int getLayoutID()  
  52.     {  
  53.         return layoutID;  
  54.     }  
  55.   
  56.     public void setLayoutID(int layoutID)  
  57.     {  
  58.         this.layoutID = layoutID;  
  59.     }  
  60.   
  61.     public DetailEntity()  
  62.     {  
  63.     }  
  64.   
  65.     public DetailEntity(String name, String date, String text, int layoutID)  
  66.     {  
  67.         super();  
  68.         this.name = name;  
  69.         this.date = date;  
  70.         this.text = text;  
  71.         this.layoutID = layoutID;  
  72.     }  
  73.   
  74. }  
Copyright © Linux教程網 All Rights Reserved