当前位置: 代码迷 >> Android >> listview 异步加载网络图片有关问题
  详细解决方案

listview 异步加载网络图片有关问题

热度:94   发布时间:2016-05-01 12:37:37.0
listview 异步加载网络图片问题
本帖最后由 mafgm 于 2012-11-13 18:02:42 编辑 public class MapListImageAndText {  
06         private String imageUrl;  
07         private String shopname;  
08         private String activitynifo;  
09         private String address;  
10         private String telephone;  
11         private String distance;  
12            

13         public MapListImageAndText(String imageUrl, String shopname, String activitynifo, String address, String telephone,String distance) {  

14             this.imageUrl = imageUrl;  
15             this.shopname = shopname;  
16             this.activitynifo = activitynifo;  
17             this.address = address;  
18             this.telephone = telephone;  
19             this.distance=distance;  
20         }  
21    
22         public String getImageUrl() {  
23             return imageUrl;  
24         }  
25            
26         public String getShopname() {  
27             return shopname;  
28         }  
30         public String getActivitynifo() {  
31             return activitynifo;  
32         }  
34         public String getAddress() {  
35             return address;  
36         }  
38         public String getTelephone() {  
39             return telephone;  
40         }  
42         public String getDistance() {  
43             return distance;  
44         }  
-----------------------------------------------------
  相关解决方案