Possible Duplicate:
Android YouTube app Play Video Intent
I wanted to know how to open Youtube App on Android directly using intent.
What i have:
@Override
public void onClick(View v) {
String video_path = "http://www.youtube.com/user/videoslusofona";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(video_path));
startActivity(intent);
}
What i don't want is for Android to ask me what App i want to open, i want to open Youtube App directly on click.
Thanks for your time