アプリケーションにステートメントがあります
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を渡します
上記のステートメントを実行すると、アクティビティを開始できません。誰か助けてもらえますか?