By following these steps, you can launch the Youtube App to display the channel directly.
Intent intent=null; try { intent =new Intent(Intent.ACTION_VIEW); intent.setPackage("com.google.android.youtube"); intent.setData(Uri.parse(url)); startActivity(intent); } catch (ActivityNotFoundException e) { intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(url)); startActivity(intent); }
And to display a channel, keep in mind to specify a url in the format http://www.youtube.com/user/channelName
source share