I am using cuePlaylist()
so getting previous and next buttons as default functionality of Youtube player
I am also allowing user to tap on any of the list item (listview contains youtube playlist videos)
But when I am passing VIDEO_ID along with PLAYLIST_ID in that case I am getting There was a problem with the network[400]
// PLAYLIST_ID : PLP7qPet500dfglA7FFTxBmB_snxCaMHDJ
// strVideoID : 7OEprLI1rIM
String sn = strVideoID+PLAYLIST_ID;
youTubePlayer.cuePlaylist(sn);
And using loadVideo(...)
I am able to play that particular video but not getting PREV and NEXT buttons.
youTubePlayer.loadVideo(strVideoID);