LoadingButtonAndroid
LoadingButtonAndroid copied to clipboard
Is it possible to use VectorDrawable instead of Bitmap?
I want to use vector drawables instead of images for the DONE and REVERT images, but I'm not able to make it. Also try to convert VectorDrawable to Bitmap with no luck.
If you use Kotlin try
ContextCompat.getDrawable(context, R.drawable.vector).toBitmap()
I'm using Java