I am looking to find a way to add a SeekBar
to a homescreen widget. After reading this post on StackOverflow, I found that SeekBar's are not supported within a RemoteView, because it is a descendant of a ProgressBar
. (Descendants of the accepted widgets are not supported)
Though, in my project, I am using Lars Werkman's HoloColorPicker
found here. If you notice in the src, his OpacityBar
(which is essentially a SeekBar) extends a View
. Since all the accepted widgets (here) are descendants of View
, I would think this would work. But alas, upon trying to load the homescreen widget with the OpacityBar
, it shows up with the "Problem loading widget" response.
Does anyone know why this doesn't work? And know how to make it work?
Or does anyone know how to get a working SeekBar
within a homescreen widget?
Thank you!