Example usage for android.media MediaPlayer.OnBufferingUpdateListener interface-usage

List of usage examples for android.media MediaPlayer.OnBufferingUpdateListener interface-usage

Introduction

In this page you can find the example usage for android.media MediaPlayer.OnBufferingUpdateListener interface-usage.

Usage

From source file com.lamcreations.scaffold.common.activities.VideoSplashScreenActivity.java

public abstract class VideoSplashScreenActivity extends BaseActivity implements TextureView.SurfaceTextureListener,
        MediaPlayer.OnBufferingUpdateListener, MediaPlayer.OnCompletionListener, MediaPlayer.OnPreparedListener,
        MediaPlayer.OnVideoSizeChangedListener, MediaPlayer.OnSeekCompleteListener {

    private static final String TAG = "VideoSplashScreen";

From source file com.shahenlibrary.VideoPlayer.VideoPlayerView.java

public class VideoPlayerView extends ScalableVideoView implements MediaPlayer.OnPreparedListener,
        MediaPlayer.OnErrorListener, MediaPlayer.OnBufferingUpdateListener, MediaPlayer.OnCompletionListener,
        MediaPlayer.OnInfoListener, LifecycleEventListener, MediaController.MediaPlayerControl {

    private ThemedReactContext themedReactContext;
    private RCTEventEmitter eventEmitter;

From source file com.nd.android.u.square.service.MusicPlaybackService.java

/**
 * Service that handles media playback. This is the Service through which we perform all the media
 * handling in our application. Upon initialization, it waits for Intents (which come from our main activity,
 * {@link com.nd.android.u.square.ui.activity.SquareActivity}, which signal the service to perform specific operations:
 * Play, Pause, Rewind, Skip, etc.
 */

From source file leoisasmendi.android.com.suricatepodcast.services.MediaPlayerService.java

public class MediaPlayerService extends Service implements MediaPlayer.OnCompletionListener,
        MediaPlayer.OnPreparedListener, MediaPlayer.OnErrorListener, MediaPlayer.OnSeekCompleteListener,
        MediaPlayer.OnInfoListener, MediaPlayer.OnBufferingUpdateListener, AudioManager.OnAudioFocusChangeListener {

    private final String TAG = getClass().getSimpleName();