1

我正在像这样在运行时创建一个 VideoView:

@Override
public View getUIElement(){
    if(vv==null){
        this.vv = new VideoView(this.getContext());
        vv.setVideoURI(Uri.parse(this.url));    
        mc = new MediaController(this.getContext());
        vv.setMediaController(mc);  
    }
    return vv;
}

然后我将此 VideoView 添加到 LinearLayout 我称之为:

public void initVideo(){
    mc.show();  
    vv.setBackgroundColor(Color.TRANSPARENT);
    vv.requestFocus();
    vv.start(); 
    Log.v("Video",vv.toString());
}

此代码在 Froyo (2.2) 和 Gingerbread (2.3.5) 上完美运行,但在 ICS (4.0) 和 JB(4.1) 上没有任何反应 - VideoView 在父视图中甚至不可见。你有什么想法为什么?在 Uri.parse() 我将 url 传递给 mp4 文件。

--edit 我忘了告诉你,在 ICS ang JB 的 LogCat 中,甚至没有调用 MediaPlayer(在 Froyo 和 Gingerbread 中有一些由 MediaPlayer 类生成的信息)。

4

1 回答 1

0

我从 res 中的 raw 文件夹中获取我的视频资源。您也可以使用直接 URL。我已经在下面的代码中提交了它。

写入 XML 布局文件

VideoView
        android:id="@+id/videoView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"<
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" />

并用java代码编写

video = (VideoView) findViewById(R.id.videoView1);
video.setVideoPath("android.resource://com.example.s3project/raw/" +R.raw.bggreen1);
//video.setVideoURI(Uri.parse("http://www.pocketjourney.com/downloads/pj/video/famous.3gp"));
        video.start();
于 2012-09-12T06:22:57.063 回答