android异步下载图片

AQuery图片加载
本文介绍使用AQuery库在Android应用中加载图片的方法,包括简单的图片加载、缓存控制、下采样、默认图片设置及进度显示等。

android应用,有些要从网络上下载图片,有几种方法:

1、

2、使用AQuery

  simple:

    aq.id(R.id.image1).image("http://...")

  cache control

    boolean memcache=false;

    boolean filecache=true;

    aq.id(R.id.image1).image("http://...",memcache,filecache);

  down sampling

    aq.id(R.id.image1).image(imageUrl,true,true,200,0)

  Fallback Image

  // if we are not able to load the image ,use a default image

    aq.id(R.id.image1).image(imageUrl,true,true,200,0,R.drawable.default_image)

  Preloading

  Progress

    

String imageUrl = "http://farm6.static.flickr.com/5035/5802797131_a729dac808_b.jpg";		
aq.id(R.id.image).progress(R.id.progress).image(imageUrl, false, false);

Sample grid item layout:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="100dip" 
    >
    
    <ProgressBar 		
	android:layout_width="15dip"       
        android:layout_height="15dip"
	android:id="@+id/progress" 
	android:layout_centerInParent="true"
	/>
    
    <ImageView
        android:id="@+id/image"       
        android:layout_width="fill_parent"       
        android:layout_height="75dip"
        />

</RelativeLayout>

等等还有很多,

网址:http://code.google.com/p/android-query/wiki/ImageLoading

 android 有时侯LOGCAT没有东西,点一下DDMS就ok了

转载于:https://www.cnblogs.com/zhanglanyun/archive/2012/06/08/2542271.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值