我已使用Picasso将公司CDN中的图片加载到tar zcvf /home/git/root_backup_folder/dailybackup.tar.gz *
:
ImageView
但现在我需要加载图片作为布局背景:
ImageView imgView;
//...
Picasso.with(context).load(Uri.parse(url)).into(imgView);
毕加索有可能吗?如果没有,我应该使用RelativeLayout theLayout;
//...
Picasso.with(context).load(Uri.parse(url)).into(...);
代替ImageView
吗?
答案 0 :(得分:3)
您可以使用滑动下载位图并将其设置为任何布局的背景。
Glide
.with(getApplicationContext())
.load("https://www.google.es/images/srpr/logo11w.png")
.asBitmap()
.into(new SimpleTarget<Bitmap>(100,100) {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation glideAnimation) {
Drawable dr = new BitmapDrawable(resource);
theLayout.setBackgroundDrawable(dr);
// Possibly runOnUiThread()
}
});
但更好的方法是在imageView
之上使用relativelayout
并将其设为match_parent
并在此imageview上显示图片。这将帮助您直接使用glide或picaso在图像视图中加载图像而不会出现内存错误。
答案 1 :(得分:1)
Picasso.with(getActivity()).load(your url).into(new Target(){
@Override
public void onBitmapLoaded(Bitmap bitmap, LoadedFrom from) {
yourlayout.setBackground(new BitmapDrawable(context.getResources(), bitmap));
}
编辑:
您可能还需要覆盖以下方法
@Override
public void onBitmapFailed(final Drawable errorDrawable) {
Log.e("TAG", "Failed");
}
@Override
public void onPrepareLoad(final Drawable placeHolderDrawable) {
Log.e("TAG", "Prepare Load");
}
}
答案 2 :(得分:1)
是。你可以使用Picasso。请检查以下代码:
Picasso.with(getActivity()).load(Uri.parse(url)).into(new Target(){
@Override
public void onBitmapLoaded(Bitmap bitmap, LoadedFrom from) {
relativeLayout.setBackground(new BitmapDrawable(context.getResources(), bitmap));
}
@Override
public void onBitmapFailed(final Drawable errorDrawable) {
Log.d("TAG", "FAILED");
}
@Override
public void onPrepareLoad(final Drawable placeHolderDrawable) {
Log.d("TAG", "Prepare Load");
}
})