Red*_*gle 8 android android-glide
在我的应用程序中,我从URL下载图像并通过Glide将其设置为ImageView,但是,我正在尝试删除一些不必要的布局,那么是否可以使用Glide下载图像并设置为TextView?
try {
Glide.with(holder.logo.getContext())
.load(standingObjectItems.get(position).getImgId()).diskCacheStrategy(DiskCacheStrategy.ALL)
.error(R.mipmap.ic_launcher)
.placeholder(R.mipmap.ic_launcher)
.into(holder.logo);
} catch (IllegalArgumentException | IndexOutOfBoundsException e) {
e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)
Red*_*gle 22
Glide.with(left.getContext())
.load(((FixturesListObject) object).getHomeIcon())
.asBitmap()
.into(new SimpleTarget<Bitmap>(100,100) {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation glideAnimation) {
left.setCompoundDrawablesWithIntrinsicBounds(null, new BitmapDrawable(left.getResources(),resource), null, null);
}
});
Run Code Online (Sandbox Code Playgroud)
Jos*_*osh 10
在 Glide 4.9.0 SimpleTarget 已弃用。您可以改用 CustomTarget。
Glide.with(myFragmentOrActivity)
.load(imageUrl)
.into(new CustomTarget<Drawable>(100,100) {
@Override
public void onResourceReady(@NonNull Drawable resource, @Nullable Transition<? super Drawable> transition)
{
left.setCompoundDrawablesWithIntrinsicBounds(null, resource, null, null);
}
@Override
public void onLoadCleared(@Nullable Drawable placeholder)
{
left.setCompoundDrawablesWithIntrinsicBounds(null, placeholder, null, null);
}
});
Run Code Online (Sandbox Code Playgroud)
使用Glide 4.7.1:
Glide.with(context)
.load(someUrl)
/* Because we can*/
.apply(RequestOptions.circleCropTransform())
/* If a fallback is not set, null models will cause the error drawable to be displayed. If
* the error drawable is not set, the placeholder will be displayed.*/
.apply(RequestOptions.placeholderOf(R.drawable.default_photo))
.into(new SimpleTarget<Drawable>() {
@Override
public void onResourceReady(@NonNull Drawable resource,
@Nullable Transition<? super Drawable> transition) {
/* Set a drawable to the left of textView */
textView.setCompoundDrawablesWithIntrinsicBounds(resource, null, null, null);
}
});
Run Code Online (Sandbox Code Playgroud)
这是一个如何使用 Kotlin 的简单示例。
GlideApp.with(context)
.load("url")
.placeholder(R.drawable.your_placeholder)
.error(R.drawable.your_error_image)
.into(object : CustomTarget<Drawable>(100, 100) {
override fun onLoadCleared(drawable: Drawable?) {
header.companyLogoJob.setCompoundDrawablesWithIntrinsicBounds(drawable,null,null,null)
}
override fun onResourceReady(res: Drawable, transition: com.bumptech.glide.request.transition.Transition<in Drawable>?) {
header.companyLogoJob.setCompoundDrawablesWithIntrinsicBounds(res,null,null,null)
}
})
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6205 次 |
| 最近记录: |