⑴ Android中的imageview控件 怎么设置url 网络上的图片呢在网上找了很多方法都不行,都会报什么网络
Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);
这个试过没有
⑵ 我用的是xcode4.2,弄了一个imageview,现在我想让这个imageview显示网络上的图片,请问我该怎么做
首先通过网址创建一个NSURLConnection,通过他的代理把请求的数据累加起来,生成NSData的数据,把激漏丛得到的搜中数据转成UIImage,然后赋值明樱给imageview就可以了,网上这方面的资料应该很多。
希望能帮助到你。
⑶ Android 怎么用网上的图片设置ImageView背景
Android 用网上的图片设置ImageView背景可以使用如下方法:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.myimage);
ImageView image1 = (ImageView) findViewById(R.myImage.image);
//Bitmap bitmap = getLoacalBitmap(“/aa/aa.jpg”); //从本地取图片
Bitmap bitmap = getHttpBitmap(“http://blog.3gstdy.com/wp-content/themes/twentyten/images/headers/path.jpg”); //从网上取图片
image1 .setImageBitmap(bitmap); //设置Bitmap
}
/**
* 加载本地图片
* http://bbs.3gstdy.com
* @param url
* @return
*/
public static Bitmap getLoacalBitmap(String url) {
try {
FileInputStream fis = new FileInputStream(url);
return BitmapFactory.decodeStream(fis);
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
}
}
/**
* 从服务器取图片
*http://bbs.3gstdy.com
* @param url
* @return
*/
public static Bitmap getHttpBitmap(String url) {
URL myFileUrl = null;
Bitmap bitmap = null;
try {
Log.d(TAG, url);
myFileUrl = new URL(url);
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
HttpURLConnection conn = (HttpURLConnection) myFileUrl
.openConnection();
conn.setConnectTimeout(0);
conn.setDoInput(true);
conn.connect();
InputStream is = conn.getInputStream();
bitmap = BitmapFactory.decodeStream(is);
is.close();
} catch (IOException e) {
e.printStackTrace();
}
return bitmap;
}
⑷ android中ImageView的setImageURI能不能设置网络上面的图片,能不能正常显示
URL picUrl = new URL(" http://www.souchiwang.com/images/user_3.jpg");
Bitmap pngBM = BitmapFactory.decodeStream(picUrl.openStream());
imageView.setImageBitmap(pngBM);
既可实现andorid的imageView控件显示网冲橘歼络散冲图片伍中
⑸ imageview加载网络图片怎么设置不缩放
复制粘贴