What would be the best way to go about creating a ...
# android
o
What would be the best way to go about creating a waveform "seek bar" like the one in Instagram app, or sound cloud, to progress through a song for example. The waveform seekbar in Instagram seems to be bundled into a horizontal recyclerview which seems weird to me.. but I'm guessing the right way to go about it is to create a custom view that handles gestures and does the scroll animation of the waveform/seekbar itself, rather than creating a waveform/seekbar and just plopping it in a recyclerview as a list of just one item.
a
yeah, a custom view like you describe is how I'd do it
o
Thanks @Adam Powell 👍