如何从我的应用程序启动默认音乐播放器?

时间:2011-06-07 13:27:16

标签: android audio-player android-music-player

我制作了一个ListView的应用。当我点击ListView项时,应该开始播放.ogg声音文件。不在我的应用程序中,而是在用户的默认音乐播放器应用程序中。我怎么能这样做?

3 个答案:

答案 0 :(得分:1)

试试这个

Intent it = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/song.mp3");
it.setDataAndType(uri, "audio/mp3");
startActivity(it);

或者

Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");   
Intent it = new Intent(Intent.ACTION_VIEW, uri);   
startActivity(it);  

摘自http://snipt.net/Martin/android-intent-usage/

我没有测试过自己。

答案 1 :(得分:1)

如果这直接适用于问题,请点击此处,但这是一种从您自己的应用中打开Play音乐应用的方法:

Intent i;
PackageManager manager = getPackageManager();
try {
i = manager.getLaunchIntentForPackage("com.google.android.music");
if (i == null)
     throw new PackageManager.NameNotFoundException();
i.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(i);
} catch (PackageManager.NameNotFoundException e) {
}

答案 2 :(得分:1)

试试这个:

    Intent intent = new Intent();
    intent.setAction(android.content.Intent.ACTION_VIEW);
    File file = new File(uri);
    intent.setDataAndType(Uri.fromFile(file), "audio/*");
    ActivityChatView.mContext.startActivity(intent);