导航:首页 > 网络设置 > imageview怎么设置网络图片

imageview怎么设置网络图片

发布时间:2023-05-24 17:06:12

⑴ 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加载网络图片怎么设置不缩放

复制粘贴

阅读全文

与imageview怎么设置网络图片相关的资料

热点内容
网络共享中心没有网卡 浏览:484
电脑无法检测到网络代理 浏览:1342
笔记本电脑一天会用多少流量 浏览:470
苹果电脑整机转移新机 浏览:1344
突然无法连接工作网络 浏览:953
联通网络怎么设置才好 浏览:1181
小区网络电脑怎么连接路由器 浏览:924
p1108打印机网络共享 浏览:1179
怎么调节台式电脑护眼 浏览:597
深圳天虹苹果电脑 浏览:835
网络总是异常断开 浏览:575
中级配置台式电脑 浏览:888
中国网络安全的战士 浏览:597
同志网站在哪里 浏览:1370
版观看完整完结免费手机在线 浏览:1425
怎样切换默认数据网络设置 浏览:1072
肯德基无线网无法访问网络 浏览:1246
光纤猫怎么连接不上网络 浏览:1369
神武3手游网络连接 浏览:930
局网打印机网络共享 浏览:966