Android: How to use TextView in placeholder of Glide or Picasso
问题 i am using Glide or Picasso for loading the image like Glide.with(context).load(POST_IMAGE).placeholder(R.drawable.loading_img).error(R.drawable.bg_480_800).into(image); Picasso.with(context).load("image url").error(R.drawable.bg_480_800).placeholder(R.drawable.loading_img).into(holder.imageURL); In these two, i'm using image as place holder from the drawable folder. Now i want to use text inside the place holder instead of image from drawable folder. So, please help me to load text instead