TextDrawable
TextDrawable copied to clipboard
Wont work with Glide...
TextDrawable drawable = TextDrawable.builder()
.buildRect(takeoffUserProfileModel.displayName, Color.RED);
Glide.with(context).load(drawable.getCurrent()).into(
profilePhotoImageView);
and throws
java.lang.IllegalArgumentException: Unknown type class com.amulyakhare.textdrawable.TextDrawable. You must provide a Model of a type for which there is a registered ModelLoader, if you are using a custom model, you must first call Glide#register with a ModelLoaderFactory for your custom model class
any solutions?
The error already tells you what you have to do for this to work. Check Glide's Documentation