Android-ScalableVideoView icon indicating copy to clipboard operation
Android-ScalableVideoView copied to clipboard

Scroll auto play/pause

Open tuanth89 opened this issue 10 years ago • 4 comments

@yqritc , thank for awesome library. i love it! Can you please add features auto play/pause when scroll like facebook app ?

tuanth89 avatar Dec 24 '15 09:12 tuanth89

+1

anvesh523 avatar Dec 24 '15 09:12 anvesh523

this videoView can circle??? I want to play CircleView. But I don't know.....

geogie avatar Mar 24 '16 08:03 geogie

If you're using RecyclerView then in your adapter:

scalableVideoView.setOnFocusChangeListener(new View.OnFocusChangeListener() {
            @Override
            public void onFocusChange(View v, boolean hasFocus) {
                if (hasFocus)
                    scalableVideoView.start();
                else
                    scalableVideoView.pause();
            }
        });

ghost avatar May 12 '16 16:05 ghost

OnFocusChangeListener does not solve this issue.

ay1man4 avatar Aug 13 '16 17:08 ay1man4