视频播放器应用

时间:2013-07-04 15:58:59

标签: java android video media-player

所以我在我的主要活动中得到了这行代码。 ortogl.mp4文件是我的SD卡的根文件夹,我有一个索尼爱立信与Android 2.1。 应用安装和控制台说错误1.0,而手机显示布局但不显示视频(它说无法播放文件)。 提示?

VideoView v = (VideoView) findViewById(R.id.videoView1);
    v.setVideoPath(getString(R.string._sdcard_ortodgl_3gp));
    v.setMediaController(new MediaController(this));
    v.start();
    v.requestFocus();

1 个答案:

答案 0 :(得分:0)

这就是我解决它的方式

    File clip = new File(Environment.getExternalStorageDirectory(),"ortodgl.mp4"); 

    VideoView v = (VideoView) findViewById(R.id.videoView1);
    v.setVideoPath(clip.getAbsolutePath());
    v.setMediaController(new MediaController(this));
    v.start();
    v.requestFocus();