Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實現從緩存中讀取圖片與異步加載功能類

Android實現從緩存中讀取圖片與異步加載功能類

編輯:關於Android編程

本文實例講述了Android實現從緩存中讀取圖片與異步加載功能類。分享給大家供大家參考,具體如下:

在新浪微博的微博列表中的圖片,為了加速其顯示也為了加快程序的響應,可以參考該圖片異步加載類實現。

public class AsyncImageLoader {
  //SoftReference是軟引用,是為了更好的為了系統回收變量
  private HashMap<String, SoftReference<Drawable>> imageCache;
  public AsyncImageLoader() {
    imageCache = new HashMap<String, SoftReference<Drawable>>();
  }
  public Drawable loadDrawable(final String imageUrl,final ImageView imageView, final ImageCallback imageCallback){
    if (imageCache.containsKey(imageUrl)) {
      //從緩存中獲取
      SoftReference<Drawable> softReference = imageCache.get(imageUrl);
      Drawable drawable = softReference.get();
      if (drawable != null) {
        return drawable;
      }
    }
    final Handler handler = new Handler() {
      public void handleMessage(Message message) {
        imageCallback.imageLoaded((Drawable) message.obj, imageView,imageUrl);
      }
    };
    //建立新一個新的線程下載圖片
    new Thread() {
      @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;
  }
  public static Drawable loadImageFromUrl(String url){
    URL m;
    InputStream i = null;
    try {
      m = new URL(url);
      i = (InputStream) m.getContent();
    } catch (MalformedURLException e1) {
      e1.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    Drawable d = Drawable.createFromStream(i, "src");
    return d;
  }
  //回調接口
  public interface ImageCallback {
    public void imageLoaded(Drawable imageDrawable,ImageView imageView, String imageUrl);
  }
}

在Adapter中使用的方法為:

public class WeiBoAdapater extends BaseAdapter{
    private AsyncImageLoader asyncImageLoader;
    @Override
    public int getCount() {
      // TODO Auto-generated method stub
      return wbList.size();
    }
    @Override
    public Object getItem(int position) {
      // TODO Auto-generated method stub
      return wbList.get(position);
    }
    @Override
    public long getItemId(int position) {
      // TODO Auto-generated method stub
      return position;
    }
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
      // TODO Auto-generated method stub
      convertView = LayoutInflater.from(getApplicationContext()).inflate(R.layout.weibo, null);
      WeiBoHolder wh = new WeiBoHolder();
      wh.wbicon = (ImageView) convertView.findViewById(R.id.wbicon);
      wh.wbtext = (TextView) convertView.findViewById(R.id.wbtext);
      wh.wbtime = (TextView) convertView.findViewById(R.id.wbtime);
      wh.wbuser = (TextView) convertView.findViewById(R.id.wbuser);
      wh.wbimage=(ImageView) convertView.findViewById(R.id.wbimage);
      WeiBoInfo wb = wbList.get(position);
      if(wb != null)
      {
        convertView.setTag(wb.getId());
        wh.wbuser.setText(wb.getUserName());
        wh.wbtime.setText(wb.getTime());
        wh.wbtext.setText(wb.getText(), TextView.BufferType.SPANNABLE);
        Drawable cachedImage = asyncImageLoader.loadDrawable(wb.getUserIcon(), wh.wbicon, new ImageCallback(){
          public void imageLoaded(Drawable imageDrawable,ImageView imageView,String imageUrl){
            imageView.setImageDrawable(imageDrawable);
          }
        });
        if (cachedImage == null)
        {
          wh.wbicon.setImageResource(R.drawable.usericon);
        }else{
          wh.wbicon.setImageDrawable(cachedImage);
        }
      }
      return convertView;
    }
}

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android控件用法總結》、《Android視圖View技巧總結》、《Android文件操作技巧匯總》、《Android操作SQLite數據庫技巧總結》、《Android操作json格式數據技巧總結》、《Android數據庫操作技巧總結》、《Android編程之activity操作技巧總結》、《Android編程開發之SD卡操作方法匯總》、《Android開發入門與進階教程》及《Android資源操作技巧匯總》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved