You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use com.google.android.exoplayer2.ui.SimpleExoPlayerView with app:use_controller="false"
Controller stay visible all the time.
Tested o r2.0.2
Only workaround is use setUseController(false) but XML layout attribute must be removed too, otherwise setUseController(false) will have no impact and controll will be visible also after call setUseController(false) because of this method has this on the beginning
if (this.useController == useController) {
return;
}
The text was updated successfully, but these errors were encountered:
- Make sure no events are posted on PlaybackControlView
if it's not attached to a window. This can cause leaks.
The target hide time is recorded if necessary and
processed when the view is re-attached.
- Deduplicated PlaybackControlView.VisibilityListener
invocations.
- Fixed timeouts to be more intuitive (I think).
- Fixed initial visibility of PlaybackControlView when
used as part of SimpleExoPlayerView.
- Made some more attributes configurable from layout xml.
Issue: #1908
Issue: #1919
Issue: #1923
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135679988
When I use
com.google.android.exoplayer2.ui.SimpleExoPlayerView
withapp:use_controller="false"
Controller stay visible all the time.
Tested o r2.0.2
Only workaround is use
setUseController(false)
but XML layout attribute must be removed too, otherwisesetUseController(false)
will have no impact and controll will be visible also after callsetUseController(false)
because of this method has this on the beginningThe text was updated successfully, but these errors were encountered: