The best way to embed youtube player in an Android app

I am working on android application and am getting mp4 files from json file. Now I want to play these files inside my application using the YouTube player. After some research, I was able to play my videos in my application. But when I return from playing the video to other parts of my application, the application seems to slow down. I need to know if I am doing it right.

This is my code used to play the video.

if (YouTubeApiServiceUtil.isYouTubeApiServiceAvailable(activity).equals(
                        YouTubeInitializationResult.SUCCESS)
                        && android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
                    Intent intent = YouTubeStandalonePlayer
                            .createVideoIntent(activity, API_KEY,
                                    video.getFile());
                    startActivity(intent);
                }

      

from video.getFile();

I receive my video.

I used the YouTubeAndroidPlayerApi.jar library as a library.

+3


source to share


1 answer


1.Download YouTubePlyaer API https://developers.google.com/youtube/android/player/downloads/

  1. Register your app in google developer console https://console.developers.google.com

  2. Take a unique API key and use it in your application.



use below code

public class AboutUs extends YouTubeBaseActivity implements YouTubePlayer.OnInitializedListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.layout_about_us);

    YouTubePlayerView youTubePlayerView = (YouTubePlayerView) findViewById(R.id.youtube_player);
    youTubePlayerView.initialize(Constants.YOUTUBE_API_KEY, this);

    initViews();
}

private void initViews() {
    Button btnVisitMega = (Button) findViewById(R.id.btn_visit_megaforties);
    Button btnVisitSecurity = (Button) findViewById(R.id.btn_visit_security_seals);

    btnVisitMega.setOnClickListener(this);
    btnVisitSecurity.setOnClickListener(this);
}

@Override
public void onInitializationFailure(Provider arg0, YouTubeInitializationResult arg1) {
    Toast.makeText(this, "Failured to Initialize!", Toast.LENGTH_LONG).show();
}

@Override
public void onInitializationSuccess(Provider provider, YouTubePlayer player, boolean wasRestored) {
    /** add listeners to YouTubePlayer instance **/
    player.setPlayerStateChangeListener(playerStateChangeListener);
    player.setPlaybackEventListener(playbackEventListener);

    /** Start buffering **/
    if (!wasRestored) {
        player.cueVideo(Constants.YOUTUBE_VIDEO_ID);
    }
}

private PlaybackEventListener playbackEventListener = new PlaybackEventListener() {

    @Override
    public void onBuffering(boolean arg0) {
    }

    @Override
    public void onPaused() {
    }

    @Override
    public void onPlaying() {
    }

    @Override
    public void onSeekTo(int arg0) {
    }

    @Override
    public void onStopped() {
    }
};

private PlayerStateChangeListener playerStateChangeListener = new PlayerStateChangeListener() {

    @Override
    public void onAdStarted() {
    }

    @Override
    public void onError(ErrorReason arg0) {
    }

    @Override
    public void onLoaded(String arg0) {
    }

    @Override
    public void onLoading() {
    }

    @Override
    public void onVideoEnded() {
    }

    @Override
    public void onVideoStarted() {
    }
};

      

0


source







All Articles