Skip to content
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

Full screen view having issue of Stretch #28

Closed
prudhvicoder opened this issue Jan 4, 2018 · 1 comment
Closed

Full screen view having issue of Stretch #28

prudhvicoder opened this issue Jan 4, 2018 · 1 comment

Comments

@prudhvicoder
Copy link

When I toggle my fullscreen without starting the video the full-screen view has a half video screen and a half control screen (in your demo app also you can see). How to fix this? And after completion of the video when I touch the seek bar it was showing in the middle (got stuck there) can I fix this? Maybe disabling the control after completion of the video also nice. Thank you in advance for creating such a wonderful library.!!

@tcking
Copy link
Owner

tcking commented Jan 5, 2018

  1. toggle fullscreen without starting the video the full-screen view has a half video screen and a half control screen -- is a bug, i fix the issue and push it
    2.after completion of the video when I touch the seek bar it was showing in the middle -- I can't reproduce the problem,but you can do anything by set a PlayerListener,eg:
videoView.setPlayerListener(new DefaultPlayerListener() {

            @Override
            public void onStart(GiraffePlayer giraffePlayer) {
                $.id(R.id.app_video_seekBar).enabled(true);
            }

            @Override
            public void onCompletion(GiraffePlayer giraffePlayer) {
                $.id(R.id.app_video_seekBar).enabled(false);
            }
        });

@tcking tcking closed this as completed in c006807 Jan 5, 2018
@tcking tcking reopened this Jan 5, 2018
@tcking tcking closed this as completed Jan 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants