-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EMVideoView continue black or white seconds when activity resume #345
Comments
Even though I have marked this as a |
Perhaps this is of interest google/ExoPlayer#852 |
Hmm, interesting... For reference, the link ojw28 points to is now invalid (because of repo changes); the full versioned link is https://github.com/google/ExoPlayer/blob/6a5cd6889258df6b9a08b770e2bf351a5bb30e18/demo/src/main/java/com/google/android/exoplayer/demo/PlayerActivity.java#L193 |
I'm having a difficult time reproducing the issue in the current |
I got the same issue. But why my last rendered frame is not visible after resuming the activity. You can observe this issue in all devices above 4.3. Even with demo app you will see the same issue. |
Nope, I have 8 different devices I have tried this with that don't have the issue as I mentioned above. What I do see is the If you are wondering why the last frame isn't still visible it is because of how the |
@brianwernick I see exactly the issue you describe on my Nexus 4 5.1, ExoMedia 4.0.2 |
@brianwernick I get the same black-screen issue on my MI5, android 7.0 |
how to solve it?@brianwernick |
how to solve it?@artworkad |
Is it still unsolved ? @brianwernick |
I have the same problem. |
Same problem |
use TextureView can solve this problem. |
can i set useTextureViewBacking programatically |
Is this issue still unsolved? please help. |
check here: #345 (comment) |
Include the following:
3.0.5
5.1
Hisense
Hisense E70-T
Reproduction Steps
1.VideoActivity onCreate:
emVideoView.setScaleType(ScaleType.NONE); emVideoView.setKeepScreenOn(true);
2.startActivity to another activity
Intent intent = new Intent(this, ProjectDetailsActivity.class); startActivity(intent);
3.press back key back to the VideoActivity,
Expected Result
the EMVideoView show video right immediately
Actual Result
the EMVideoView continue black or white seconds(audio is normal), after seconds, the EMVideoView show video right
The text was updated successfully, but these errors were encountered: