WheelView
WheelView copied to clipboard
load image url items
any updates on this please
anyone solve this...??
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 can you share image loading code