大家下午好!
因此,我有一个checklistItem对象,并且在其中有2个方法:
.getVideoUrl()->返回视频URL
.getVideoStartTime()->返回视频开始播放的时间(秒)
我需要在上面提到的方法返回的特定时间上打开网址中包含的视频。
这是我当前的实现方式:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(checklistItem.getVideoUrl()));
intent.setDataAndType(Uri.parse(checklistItem.getVideoUrl()), "video/mp4");
view.getContext().startActivity(intent);
有任何想法吗?
提前感谢,祝您有愉快的一天!