Skip to content Skip to sidebar Skip to footer

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.

Solution 1:

Placeholder is a Drawable, so what you'll need is some kind of Drawable that is able to display text. This library does exactly that, and does it pretty well.


Post a Comment for "Android: How To Use Textview In Placeholder Of Glide Or Picasso"