Hi
I am trying to accomplish the following: given some media file i have i would like to launch one of the native Android apps such as Music and make them to display/play the file.
I could open the android browser with a url I need the following way:
Intent i = new Intent();
ComponentName comp =
new ComponentName("com.android.browser", "com.android.browser.BrowserActivity");
i.setComponent(comp);
i.setAction("android.intent.action.VIEW");
i.addCategory("android.intent.category.BROWSABLE");
Uri uri = Uri.parse("http://groups.google.com/group/clickin-2-da-beat/files");
i.setData(uri);
self.startActivity(i);
Here I use the activity from the browser app to start it.
I would like to do the same with other activities as well, but I dont know which one.....
Thanks for the help


