Nam Nguyen

Results 292 comments of Nam Nguyen

@tranquoctrungcntt Thanks and sorry for the inconvenience.

@charlizesmith sorry for late reply, please find my answers below (1) Once ViewHolder is detached, the player resource is cleared automatically. (2) As a result, there should be no memory...

@sanketmthakare as said, playing multiple items at a time is power consuming. To ensure, you can configure it to play only one or no items and see how it changes.

@charlizesmith I think by default Toro will play only one at a time, regardless of which LayoutManager you use. You just don't need to provide any PlayerSelector. My sample is...

@gouravd My default implementation use the following constructor: ```java DefaultTrackSelector(BandwidthMeter); ``` Internally it will init a new AdaptiveTrackSelection using the BandwidthMeter. The toro-exoplayer extension allows you to pass custom BandwidthMeter...

@j3p0n You can have your own **Strategy** which does nothing, for example a **lazyStrategy**. So when you want to disable auto playback, just call **Toro.setStrategy(lazyStrategy)**. See how I implement **Toro.rest(boolean)**...

@foodied You can always return a 'conditional false' from ``wantsToPlay`` (assuming that you are using Toro 3.x) ;). It will disable the auto play for a certain ToroPlayer. To disable...

@foodied Yep, it will not start loading (SimpleExoPlayer will not call 'prepare') if you don't have it starts. You can put a thumbnail view on top to hide the black...

@foodied "immediate playback without any buffering" you mean that [1] Do not start the playback automatically, but [2] When click to play button (so User has a chance to manually...

@foodied Please try that and tell me if it doesn't work well for you. I disable the loading by default to save the resource and improve scrolling performance. It should...