VideoView の URL からビデオを再生したい:
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
String path1="http://commonsware.com/misc/test2.3gp";
Uri uri=Uri.parse(path1);
VideoView video=(VideoView)findViewById(R.id.videoView1);
video.setVideoURI(uri);
video.start();
}
しかし、アプリを実行しようとすると NullPointerException が発生します。
logcat によると、問題は次の場所にあります。video.setVideoURI(uri);
誰か助けてくれませんか?
ありがとう。