In my program i am launching Youtube Playlist, but it always showing dialog to choose the way to open, options like:- Browser, Youtube etc.
may i know if i directly want to call using Youtube, without showing any dialog, so what i need to use, see my code below:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://www.youtube.com/playlist?list=PL2F07DBCDCC01493A"));
startActivity(intent);