我正在尝试从网上下载图片并在图片视图中显示它。 问题是屏幕上没有显示任何内容。 我正在使用下面的代码。 谢谢!
package com.example.citiestoremember;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.widget.ImageView;
public class DisplayImage extends Activity {
ImageView img;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.image_city);
Intent theIntent = getIntent();
String urlImage = theIntent.getStringExtra("urlImage");
try {
img = (ImageView) findViewById(R.id.urlImage);
Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL(urlImage).getContent());
img.setImageBitmap(bitmap);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
ImageLoader不是通用ImageLoader。 Android正在为图像加载提供AQuery。
您可以在以下链接中找到aQuery jar文件:
http://code.google.com/p/android-query/
私有AQuery androidAQuery; androidAQuery = new AQuery(getActivity());
androidAQuery.id(你的imageview).image(你的图像值,true,true,默认图标(可选));