Menus

Friday 14 August 2020

How to place a YouTube Video in Your android app

 

Hello Friends

    Welcome back to android tutorials in this post we are going to earn about How to place a YouTube Video in Your android app.




Start new project in android studio.

Specify application name

To play Your YouTube video you need to the internet permission for the application

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
Place YouTube video in Your app You need to add YouTube API. Download and add library in Your project.
    YouTube Android API (Click to Download)
    Extract File
    Now open libs folder
    Copy jar files
    Now open android studio 
        Open project view
        Open app folder
        Paste that jar file inside lib folder and right click then click Add As Library

      
To play YouTube video then create YouTube API Key.
    Get the API key to submit application package name and SHA1 certificate fingerprint on google developer console.
        Create new project
        Go to credentials option and create API key
        Copy this API key and to add java class in your android project

Go to Activity, then add Custom View select YouTube Player View and to add a Button text as Play

Then following these code

Config.Java

public class Config {

private static final String YOUTUBE_API_KEY = "Paste Your key....";

public static String getYoutubeApiKey() {
return YOUTUBE_API_KEY;
}

}


MainActivity.Java

import android.os.Bundle;
import android.view.View;
import android.widget.Button;

import com.google.android.youtube.player.YouTubeBaseActivity;
import com.google.android.youtube.player.YouTubeInitializationResult;
import com.google.android.youtube.player.YouTubePlayer;
import com.google.android.youtube.player.YouTubePlayerView;

import java.util.ArrayList;
import java.util.List;

public class MainActivity extends YouTubeBaseActivity {


YouTubePlayerView aYouTubePlayerView;
Button btnPlay;
YouTubePlayer.OnInitializedListener mOnInitializedListener;

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

btnPlay = (Button) findViewById(R.id.btnPlay);
aYouTubePlayerView = (YouTubePlayerView) findViewById(R.id.youtubeplay);

mOnInitializedListener = new YouTubePlayer.OnInitializedListener() {
@Override
public void onInitializationSuccess(YouTubePlayer.Provider provider, YouTubePlayer youTubePlayer, boolean b) {

//Load video list
/* List<String> videoList = new ArrayList<>();
videoList.add("saIqHKolTHc");
videoList.add("ov8YX9tNyio");
youTubePlayer.loadVideos(videoList); */

//play list
//youTubePlayer.loadPlaylist("PLIFW--Hzc0hbgKs_ZIzMWnElNkHkpsmGP");

//play video
youTubePlayer.loadVideo("saIqHKolTHc");
}

@Override
public void onInitializationFailure(YouTubePlayer.Provider provider, YouTubeInitializationResult youTubeInitializationResult) {

}
};

btnPlay.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
aYouTubePlayerView.initialize(Config.getYoutubeApiKey(),mOnInitializedListener);
}
});

}
}



Thanks You