我用ListView
. 当我点击一个ListView
项目时,一个.ogg
声音文件应该开始播放。不在我的应用程序中,而是在用户的默认音乐播放器应用程序中。我怎样才能做到这一点?
问问题
5188 次
3 回答
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/
我自己没有测试过。
于 2011-06-07T14:19:19.320 回答
1
不知道这是否直接适用于该问题,但这是一种从您自己的应用程序打开 Play Music 应用程序的方法:
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) {
}
于 2014-03-02T10:21:13.193 回答
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);
于 2017-09-28T09:25:47.340 回答