这个功能似乎对大多数Android玩家来说很常见,但你如何实现呢?假设您有想要播放的mp4文件的http链接。你如何在Android中实现它?已阅读以下SO帖子here和here,但我不知道它的含义或如何实现它。
到目前为止,我所做的只是这个:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(fileUrl), "video/*");
startActivity(intent);
谢谢,美好的一天!!