android.media.MediaPlayer.OnInfoListener Java Examples
The following examples show how to use
android.media.MediaPlayer.OnInfoListener.
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: VideoViewH264LeMobile_4D.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #2
Source File: VideoView.java From VCL-Android with Apache License 2.0 | 4 votes |
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void setOnInfoListener(OnInfoListener l) { }
Example #3
Source File: FullscreenVideoView.java From FullscreenVideoView with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { if (mediaPlayer != null) this.infoListener = l; else throw new RuntimeException("Media Player is not initialized"); }
Example #4
Source File: VideoView.java From libvlc-sdk-android with GNU General Public License v2.0 | 4 votes |
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void setOnInfoListener(OnInfoListener l) { }
Example #5
Source File: SurfaceVideoView.java From VideoRecord with MIT License | 4 votes |
public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #6
Source File: VideoView.java From vlc-example-streamplayer with GNU General Public License v3.0 | 4 votes |
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void setOnInfoListener(OnInfoListener l) { }
Example #7
Source File: VideoView.java From OTTLivePlayer_vlc with MIT License | 4 votes |
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void setOnInfoListener(OnInfoListener l) { }
Example #8
Source File: VideoView.java From OTTLivePlayer_vlc with MIT License | 4 votes |
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void setOnInfoListener(OnInfoListener l) { }
Example #9
Source File: FFMpegPlayer.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener listener) { this.mOnInfoListener = listener; }
Example #10
Source File: VideoViewH264m3u8Hw_4D.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #11
Source File: VideoViewH264mp4_4D.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #12
Source File: VideoViewH264m3u8_4D.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #13
Source File: VideoViewTV.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #14
Source File: VideoViewH264mp4.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #15
Source File: VideoViewH264m3u8HwLeMobile.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #16
Source File: VideoViewH264m3u8Hw.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #17
Source File: VideoViewH264LeMobile.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #18
Source File: VideoViewH264m3u8.java From letv with Apache License 2.0 | 4 votes |
public void setOnInfoListener(OnInfoListener l) { this.mOnInfoListener = l; }
Example #19
Source File: VideoView.java From libvlc-android-sdk with GNU Lesser General Public License v2.1 | 4 votes |
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void setOnInfoListener(OnInfoListener l) { }
Example #20
Source File: VideoView.java From Android-VideoView with GNU General Public License v2.0 | 2 votes |
/** * Register a callback to be invoked when an informational event occurs * during playback or setup. * * @param l * The callback that will be run */ public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #21
Source File: TextureVideoView.java From texturevideoview with Apache License 2.0 | 2 votes |
/** * Register a callback to be invoked when an informational event * occurs during playback or setup. * * @param l The callback that will be run */ public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #22
Source File: VideoView.java From android_9.0.0_r45 with Apache License 2.0 | 2 votes |
/** * Register a callback to be invoked when an informational event * occurs during playback or setup. * * @param l The callback that will be run */ public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #23
Source File: VideoView.java From Alite with GNU General Public License v3.0 | 2 votes |
/** * Register a callback to be invoked when an informational event * occurs during playback or setup. * * @param l The callback that will be run */ public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #24
Source File: VideoView.java From twitter-kit-android with Apache License 2.0 | 2 votes |
/** * Register a callback to be invoked when an informational event * occurs during playback or setup. * * @param l The callback that will be run */ public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #25
Source File: VideoView.java From imsdk-android with MIT License | 2 votes |
/** * Register a callback to be invoked when an informational event * occurs during playback or setup. * * @param l The callback that will be run */ public void setOnInfoListener(OnInfoListener l) { mOnInfoListener = l; }
Example #26
Source File: LetvMediaPlayerControl.java From letv with Apache License 2.0 | votes |
void setOnInfoListener(OnInfoListener onInfoListener);