227 lines
7.6 KiB
Java
227 lines
7.6 KiB
Java
|
package com.brentvatne.exoplayer;
|
||
|
|
||
|
import android.annotation.TargetApi;
|
||
|
import android.content.Context;
|
||
|
import android.support.v4.content.ContextCompat;
|
||
|
import android.util.AttributeSet;
|
||
|
import android.view.Gravity;
|
||
|
import android.view.SurfaceView;
|
||
|
import android.view.TextureView;
|
||
|
import android.view.View;
|
||
|
import android.view.ViewGroup;
|
||
|
import android.widget.FrameLayout;
|
||
|
|
||
|
import com.google.android.exoplayer2.C;
|
||
|
import com.google.android.exoplayer2.ExoPlaybackException;
|
||
|
import com.google.android.exoplayer2.ExoPlayer;
|
||
|
import com.google.android.exoplayer2.SimpleExoPlayer;
|
||
|
import com.google.android.exoplayer2.Timeline;
|
||
|
import com.google.android.exoplayer2.source.TrackGroupArray;
|
||
|
import com.google.android.exoplayer2.text.Cue;
|
||
|
import com.google.android.exoplayer2.text.TextRenderer;
|
||
|
import com.google.android.exoplayer2.trackselection.TrackSelectionArray;
|
||
|
import com.google.android.exoplayer2.ui.SubtitleView;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@TargetApi(16)
|
||
|
public final class ExoPlayerView extends FrameLayout {
|
||
|
|
||
|
private final View surfaceView;
|
||
|
private final View shutterView;
|
||
|
private final SubtitleView subtitleLayout;
|
||
|
private final AspectRatioFrameLayout layout;
|
||
|
private final ComponentListener componentListener;
|
||
|
private SimpleExoPlayer player;
|
||
|
|
||
|
public ExoPlayerView(Context context) {
|
||
|
this(context, null);
|
||
|
}
|
||
|
|
||
|
public ExoPlayerView(Context context, AttributeSet attrs) {
|
||
|
this(context, attrs, 0);
|
||
|
}
|
||
|
|
||
|
public ExoPlayerView(Context context, AttributeSet attrs, int defStyleAttr) {
|
||
|
super(context, attrs, defStyleAttr);
|
||
|
|
||
|
boolean useTextureView = false;
|
||
|
|
||
|
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(
|
||
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||
|
ViewGroup.LayoutParams.MATCH_PARENT);
|
||
|
|
||
|
componentListener = new ComponentListener();
|
||
|
|
||
|
FrameLayout.LayoutParams aspectRatioParams = new FrameLayout.LayoutParams(
|
||
|
FrameLayout.LayoutParams.MATCH_PARENT,
|
||
|
FrameLayout.LayoutParams.MATCH_PARENT);
|
||
|
aspectRatioParams.gravity = Gravity.CENTER;
|
||
|
layout = new AspectRatioFrameLayout(context);
|
||
|
layout.setLayoutParams(aspectRatioParams);
|
||
|
|
||
|
shutterView = new View(getContext());
|
||
|
shutterView.setLayoutParams(params);
|
||
|
shutterView.setBackgroundColor(ContextCompat.getColor(context, android.R.color.black));
|
||
|
|
||
|
subtitleLayout = new SubtitleView(context);
|
||
|
subtitleLayout.setLayoutParams(params);
|
||
|
subtitleLayout.setUserDefaultStyle();
|
||
|
subtitleLayout.setUserDefaultTextSize();
|
||
|
|
||
|
View view = useTextureView ? new TextureView(context) : new SurfaceView(context);
|
||
|
view.setLayoutParams(params);
|
||
|
surfaceView = view;
|
||
|
|
||
|
layout.addView(surfaceView, 0, params);
|
||
|
layout.addView(shutterView, 1, params);
|
||
|
layout.addView(subtitleLayout, 2, params);
|
||
|
|
||
|
addViewInLayout(layout, 0, aspectRatioParams);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set the {@link SimpleExoPlayer} to use. The {@link SimpleExoPlayer#setTextOutput} and
|
||
|
* {@link SimpleExoPlayer#setVideoListener} method of the player will be called and previous
|
||
|
* assignments are overridden.
|
||
|
*
|
||
|
* @param player The {@link SimpleExoPlayer} to use.
|
||
|
*/
|
||
|
public void setPlayer(SimpleExoPlayer player) {
|
||
|
if (this.player == player) {
|
||
|
return;
|
||
|
}
|
||
|
if (this.player != null) {
|
||
|
this.player.setTextOutput(null);
|
||
|
this.player.setVideoListener(null);
|
||
|
this.player.removeListener(componentListener);
|
||
|
this.player.setVideoSurface(null);
|
||
|
}
|
||
|
this.player = player;
|
||
|
shutterView.setVisibility(VISIBLE);
|
||
|
if (player != null) {
|
||
|
if (surfaceView instanceof TextureView) {
|
||
|
player.setVideoTextureView((TextureView) surfaceView);
|
||
|
} else if (surfaceView instanceof SurfaceView) {
|
||
|
player.setVideoSurfaceView((SurfaceView) surfaceView);
|
||
|
}
|
||
|
player.setVideoListener(componentListener);
|
||
|
player.addListener(componentListener);
|
||
|
player.setTextOutput(componentListener);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the resize mode which can be of value {@link ResizeMode.Mode}
|
||
|
*
|
||
|
* @param resizeMode The resize mode.
|
||
|
*/
|
||
|
public void setResizeMode(@ResizeMode.Mode int resizeMode) {
|
||
|
if (layout.getResizeMode() != resizeMode) {
|
||
|
layout.setResizeMode(resizeMode);
|
||
|
post(measureAndLayout);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the view onto which video is rendered. This is either a {@link SurfaceView} (default)
|
||
|
* or a {@link TextureView} if the {@code use_texture_view} view attribute has been set to true.
|
||
|
*
|
||
|
* @return either a {@link SurfaceView} or a {@link TextureView}.
|
||
|
*/
|
||
|
public View getVideoSurfaceView() {
|
||
|
return surfaceView;
|
||
|
}
|
||
|
|
||
|
private final Runnable measureAndLayout = new Runnable() {
|
||
|
@Override
|
||
|
public void run() {
|
||
|
measure(
|
||
|
MeasureSpec.makeMeasureSpec(getWidth(), MeasureSpec.EXACTLY),
|
||
|
MeasureSpec.makeMeasureSpec(getHeight(), MeasureSpec.EXACTLY));
|
||
|
layout(getLeft(), getTop(), getRight(), getBottom());
|
||
|
}
|
||
|
};
|
||
|
|
||
|
private void updateForCurrentTrackSelections() {
|
||
|
if (player == null) {
|
||
|
return;
|
||
|
}
|
||
|
TrackSelectionArray selections = player.getCurrentTrackSelections();
|
||
|
for (int i = 0; i < selections.length; i++) {
|
||
|
if (player.getRendererType(i) == C.TRACK_TYPE_VIDEO && selections.get(i) != null) {
|
||
|
// Video enabled so artwork must be hidden. If the shutter is closed, it will be opened in
|
||
|
// onRenderedFirstFrame().
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
// Video disabled so the shutter must be closed.
|
||
|
shutterView.setVisibility(VISIBLE);
|
||
|
}
|
||
|
|
||
|
private final class ComponentListener implements SimpleExoPlayer.VideoListener,
|
||
|
TextRenderer.Output, ExoPlayer.EventListener {
|
||
|
|
||
|
// TextRenderer.Output implementation
|
||
|
|
||
|
@Override
|
||
|
public void onCues(List<Cue> cues) {
|
||
|
subtitleLayout.onCues(cues);
|
||
|
}
|
||
|
|
||
|
// SimpleExoPlayer.VideoListener implementation
|
||
|
|
||
|
@Override
|
||
|
public void onVideoSizeChanged(int width, int height, int unappliedRotationDegrees, float pixelWidthHeightRatio) {
|
||
|
boolean isInitialRatio = layout.getAspectRatio() == 0;
|
||
|
layout.setAspectRatio(height == 0 ? 1 : (width * pixelWidthHeightRatio) / height);
|
||
|
|
||
|
// React native workaround for measuring and layout on initial load.
|
||
|
if (isInitialRatio) {
|
||
|
post(measureAndLayout);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onRenderedFirstFrame() {
|
||
|
shutterView.setVisibility(INVISIBLE);
|
||
|
}
|
||
|
|
||
|
// ExoPlayer.EventListener implementation
|
||
|
|
||
|
@Override
|
||
|
public void onLoadingChanged(boolean isLoading) {
|
||
|
// Do nothing.
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onPlayerStateChanged(boolean playWhenReady, int playbackState) {
|
||
|
// Do nothing.
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onPlayerError(ExoPlaybackException e) {
|
||
|
// Do nothing.
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onPositionDiscontinuity() {
|
||
|
// Do nothing.
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onTimelineChanged(Timeline timeline, Object manifest) {
|
||
|
// Do nothing.
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onTracksChanged(TrackGroupArray trackGroups, TrackSelectionArray trackSelections) {
|
||
|
updateForCurrentTrackSelections();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|