文章列表
引用http://blog.jteam.nl/2009/09/17/exploring-the-world-of-android-part-2
ListView异步加载图片是非常实用的方法,凡是是要通过网络获取图片资源一般使用这种方法比较好,用户体验好,下面就说实现方法,先贴上主方法的代码:
package com.dragon.example;
import java.io.IOException;
import java.io.InputStream;
import java.lang.ref.SoftReference;
import java.n ...
引用http://www.cnblogs.com/zhengtao/articles/1930802.htm
//放大缩小图片
public static Bitmap zoomBitmap(Bitmap bitmap,int w,int h){
int width = bitmap.getWidth();
int height = bitmap.getHeight();
Matrix matrix = new Matrix();
float scaleWidht = ((float)w / width);
...