Hey guys,
I have a question related to choosing an application programmatically when shown the dialog "Complete Action Using" in Android.
An example would be as follow: In my code, I have this statement
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("http://www.youtube.com/watch?v=98yl260nMEA")));
I will then shown a dialog box with two options: to complete the action using the Browser or YouTube
Any idea how can I choose YouTube without being shown the dialog box?
Thanks!
Nicholas