是否可以使用Glide下载图像加载到TextView中?

时间:2015-11-08 13:57:16

标签: 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();
}

4 个答案:

答案 0 :(得分:20)

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);
        }
});

答案 1 :(得分:4)

使用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);
         }
});

答案 2 :(得分:1)

这是使用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)
                }

            })

答案 3 :(得分:0)

在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);
        }
    });