com.shuyu.gsyvideoplayer.listener.VideoAllCallBack Java Examples
The following examples show how to use
com.shuyu.gsyvideoplayer.listener.VideoAllCallBack.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: LQRBiliPlayerOptionBuilder.java From LQRBiliBlili with MIT License | 4 votes |
/** * 设置播放过程中的回调 */ public LQRBiliPlayerOptionBuilder setVideoAllCallBack(VideoAllCallBack videoAllCallBack) { this.mVideoAllCallBack = videoAllCallBack; return this; }
Example #2
Source File: SmallVideoHelper.java From GSYVideoPlayer with Apache License 2.0 | 4 votes |
public VideoAllCallBack getVideoAllCallBack() { return mVideoAllCallBack; }
Example #3
Source File: GSYVideoHelper.java From GSYVideoPlayer with Apache License 2.0 | 4 votes |
public VideoAllCallBack getVideoAllCallBack() { return mVideoAllCallBack; }
Example #4
Source File: ListVideoUtil.java From GSYVideoPlayer with Apache License 2.0 | 2 votes |
/** * 视频接口回调 * * @param videoAllCallBack 回调 */ public void setVideoAllCallBack(VideoAllCallBack videoAllCallBack) { this.videoAllCallBack = videoAllCallBack; gsyVideoPlayer.setVideoAllCallBack(videoAllCallBack); }
Example #5
Source File: GSYVideoOptionBuilder.java From GSYVideoPlayer with Apache License 2.0 | 2 votes |
/** * 设置播放过程中的回调 * * @param mVideoAllCallBack */ public GSYVideoOptionBuilder setVideoAllCallBack(VideoAllCallBack mVideoAllCallBack) { this.mVideoAllCallBack = mVideoAllCallBack; return this; }
Example #6
Source File: GSYVideoView.java From GSYVideoPlayer with Apache License 2.0 | 2 votes |
/** * 设置播放过程中的回调 * * @param mVideoAllCallBack */ public void setVideoAllCallBack(VideoAllCallBack mVideoAllCallBack) { this.mVideoAllCallBack = mVideoAllCallBack; }