原文 [Xamarin.Android] 異步的網絡圖片下載android
在設計要從網絡上接大量數據而且顯示在Android Listview中,而這些資料是利用Json格式傳送而且數據中包含這圖片檔案。 那在Xamarin中如何實做這種異步下載的觀念?git
public class RootObject{github
public string title { get; set; }web
public string detail { get; set; }json
public string image { get; set; }api
}網絡
var imageView = view.FindViewById (Resource.Id.imageView1);異步
UrlImageViewHelper.UrlImageViewHelper.SetUrlDrawable(imageView, item.image);async