如何从URL中的imageView for List项加载图像。
答案 0 :(得分:3)
您只需使用此library
即可使用延迟加载的概念。
答案 1 :(得分:0)
我在ListView适配器的getView()中使用它。
Webview kWebview = new Webview(context);
kWebview.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
kWebview.setFocusable(false);
kWebview.setClickable(false);
kWebview.setLongClickable(false);
kWebview.setFocusableInTouchMode(false);
kWebview.setInitialScale(100);
kWebview.setBackgroundColor(Color.BLACK);
WebSettings kSet = kWebview.getSettings();
kSet.setLoadWithOverviewMode(false);
kSet.setLoadsImagesAutomatically(true);
kSet.setAppCacheEnabled(true);
kSet.setAppCachePath(_context.getCacheDir().toString());
kSet.setCacheMode(WebSettings.LOAD_DEFAULT);
kSet.setAllowFileAccess(true);
kSet.setDomStorageEnabled(true);
kWebview.loadUrl("http://image_url");
Webview比ImageView更加顺畅地加载
答案 2 :(得分:0)
试试这段代码:
string path = item.ImgPath;
URL url = new URL(path);
URI uri = new URI(url.Protocol, url.UserInfo, url.Host, url.Port, url.Path, url.Query, url.Ref);
url = uri.ToURL();
//convert it into bitmap
var bitmap = Android.Graphics.BitmapFactory.DecodeStream(url.OpenStream());
//set bitmap drawable
System.IO.Stream stream = url.OpenStream();
Img.SetImageBitmap(bitmap);
答案 3 :(得分:-1)
尝试以下代码:
try
{
URL img_value = null;
img_value = new URL("ImageUrl");
Bitmap mIcon1 = BitmapFactory.decodeStream(img_value.openConnection().getInputStream());
Image.setImageBitmap(mIcon1);
}
catch(Exception e)
{
}