PreviewSeekBar
A SeekBar suited for showing a preview of something. As seen in Google Play Movies.
Google Play Movies
PreviewSeekBar's sample
Build
Add the following to your app's build.gradle:
How to use
Add the following XML:
You need to add at least one PreviewSeekBar and a FrameLayout inside PreviewSeekBarLayout, else an exception will be thrown.
PreviewSeekBarLayout extends from RelativeLayout so you can add other views or layouts there.
Create a PreviewLoader and pass it to PreviewSeekBarLayout:
How to use with ExoPlayer
Add a custom controller to your SimpleExoPlayerView
Here's the sample's exoplayer_controls: https://github.com/rubensousa/PreviewSeekBar/blob/master/sample/src/main/res/layout/exoplayer_controls.xml
The PreviewSeekBarLayout inside exoplayer_controls should be similar to this:
Create your own ExoPlayerLoader that seeks the video to the current position
In this sample, Glide is used with a custom transformation to crop the thumbnails from a thumbnail sprite.