Android 非同步載入圖片的執行個體代碼

來源:互聯網
上載者:User

非同步載入圖片的主要流程是進行判斷緩衝中是否存在圖片,如果存在則直接返回,如果不存在則進行下載並進行緩衝。

以下是建立一個非同步下載類:

複製代碼 代碼如下:/**
* User: Tom
* Date: 13-5-13
* Time: 下午8:07
*/
public class AsnycImageLoader {

//定義一個HashMap進行存放緩衝的Image key為String Value為一個弱引用的一個資源檔
// 圖片 為了方便JAVA的回收
private Map<String, SoftReference<Drawable>> imageCache = null;
public AsnycImageLoader() {
imageCache = new HashMap<String, SoftReference<Drawable>>();
}

/**
* 載入圖片
* <p>imageurl為下載資源的URL,
* ImageCallback當緩衝中不存在相關圖片時時行網路下載
* 在多線程下要使用Handler進行操作UI 利用回調介面的方式進行更新UI
* </p>
* @param imageUrl
* @param callback
* @return
*/
public Drawable loadDrawable(final String imageUrl, final ImageCallback callback) {
//進行判斷ImageCache中是否存在緩衝圖片
if (imageCache.containsKey(imageUrl)) {
SoftReference<Drawable> softReference = imageCache.get(imageUrl);
if (softReference.get() != null) {
return softReference.get();
}
}
//定義操作UI的Handler
final Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
callback.imageLoaded((Drawable) msg.obj);
}
};

new Thread(new Runnable() {
@Override
public void run() {
Drawable drawable = loadImageFromUrl(imageUrl);
imageCache.put(imageUrl, new SoftReference<Drawable>(drawable));
Message message = handler.obtainMessage(0, drawable);
handler.sendMessage(message);
}
}).start();
return null;
}

//根據URL地址進行擷取資源
protected Drawable loadImageFromUrl(String imageUrl) {
try {
return Drawable.createFromStream(new URL(imageUrl).openStream(), "src");
} catch (Exception e) {
throw new RuntimeException();
}
}

//回調介面
public interface ImageCallback {
public abstract void imageLoaded(Drawable drawable);
}
}

主Activity:

複製代碼 代碼如下:/**
* User: Tom
* Date: 13-5-13
* Time: 下午8:33
*/
public class LoadImage extends Activity {
private AsnycImageLoader loader = null;

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.loadimages);

loader = new AsnycImageLoader();

loadImage("http://www.jb51.net/images/icon-partners.png", R.id.image1);
loadImage("http://www.jb51.net/images/icon-dev.png", R.id.image2);
loadImage("http://pic28.jb51.net/20130421/12302174_231210305323_2.jpg", R.id.image3);

}

public void loadImage(String url, int id) {
final ImageView imageView = (ImageView) findViewById(id);
Drawable cacheImage = loader.loadDrawable(url, new AsnycImageLoader.ImageCallback() {
@Override
public void imageLoaded(Drawable drawable) {
imageView.setImageDrawable(drawable);
}
});
if (cacheImage != null) {
imageView.setImageDrawable(cacheImage);
}
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.