0

我正在尝试创建一个应用程序,其中我的 drawable-mdpi 文件夹中有一个视频(d1)。我希望在用户启动应用程序时播放此视频。

这是我第一次尝试这种方式,所以不知道该怎么做。

我的 MainActivity.Java OnCreate 方法代码:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    VideoView vv = (VideoView)this.findViewById(R.id.vv01);
    String uriString = "android.resource://" + getPackageName() + "/" + R.drawable.d1;
    vv.setVideoURI(Uri.parse(uriString));
    vv.start();
}

我的 Activity_Main.xml 文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <VideoView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/vv01"
        android:contentDescription="@string/app_name"
        />

</RelativeLayout>

我不确定我使用的 URI 字符串路径是否正确。请建议如何实现它,因为它目前不起作用。此外,如果可能,请建议如何包含播放/暂停按钮和重定向到新视频的“下一个视频”按钮。

4

1 回答 1

1

您可以将视频文件放在assets文件夹中,然后像这样播放

vv.setVideoPath("file:///android_asset/d1.avi");    
vv.start();
于 2012-08-25T12:00:58.750 回答