我有一个链接http://yousite/sample.mp3
,我想将它传递给 android 中的默认音频播放器: 我正在做:
RssItem item = (RssItem) adapter.getItem(position);
Uri uri = Uri.parse(item.getLink());
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setType("audio/mp3");
startActivity(intent);
它说:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW typ=audio/mp3 }
如果我忽略intent.setType("audio/mp3");
它会在带有音频播放器的浏览器中打开,这显然不是我想要的。然后我尝试分享:
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
并且没有找到要分享的应用程序!