我的申请中有陈述
Uri uri = Uri.parse(movie1.getMovieWatchLink());
// With this line the Youtube application, if installed, will launch immediately.
// Without it you will be prompted with a list of the application to choose.
uri = Uri.parse("vnd.youtube:"+ uri.getQueryParameter("v"));
Intent intent = new Intent("android.intent.action.VIEW", uri);
VideoActivity.this.startActivity(intent);
我正在传递 youtube 视频 URL
当我运行上述语句时,我无法启动活动,任何人都可以帮助我吗?