eneim / toro

Video list auto playback made simple, specially built for RecyclerView
Apache License 2.0
1.42k stars 253 forks source link

Get current video playing progress #437

Closed RockyLin closed 5 years ago

RockyLin commented 5 years ago

What kind of issue is this? Toro version. latest_release = '3.6.2.2804'

@eneim I'm implementing feature like facebook timeline. How to get the playing progress while video is playing? Thanks a lot!

<com.google.android.exoplayer2.ui.PlayerView
                android:id="@+id/video_player"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/colorLightGray"
                app:resize_mode="zoom"
                app:surface_type="texture_view"
                app:use_controller="false" />
eneim commented 5 years ago

@RockyLin you can set use_controller to true and I think you can customize the UI of the controller. Please take a look at PlayerView document (ExoPlayer library).

RockyLin commented 5 years ago

@eneim Thanks a lot!