WheelView icon indicating copy to clipboard operation
WheelView copied to clipboard

load image url items

Open anshul90 opened this issue 5 years ago • 4 comments

anshul90 avatar Apr 11 '19 10:04 anshul90

any updates on this please

youssefwagih avatar Oct 19 '19 10:10 youssefwagih

anyone solve this...??

maheshqzaak avatar Mar 25 '20 06:03 maheshqzaak

I have the same issue, I found a solution after so many attempts. wheel view support only drawable. so you need to download an image from URL and save in cache dir so storage permission not required. Once downloading done. you can convert image into drawable.

Additional, I required image with other views so I keep the hidden Linearlayout and converted view into drawable.

Bitmap b = getBitmapFromView(binding.tempLiner); Drawable dd = new BitmapDrawable(b); return dd;

vivekbdc avatar Sep 05 '20 05:09 vivekbdc

vivekbdc can you share image loading code

maheshqzaak avatar Dec 03 '20 09:12 maheshqzaak