2012年5月24日
摘要: iphone上实现很简单,一行代码:imageView.image =[UIImage imageWithContentsOfURL:theURL];android:两种方法:Bitmap bimage= getBitmapFromURL(bannerpath);image.setImageBitmap(bimage); public static Bitmap getBitmapFromURL(String src) { try { Log.e("src",src); URL url = new URL(src); ... 阅读全文
posted @ 2012-05-24 00:23 老Zhan 阅读(16051) 评论(0) 推荐(0) 编辑