我将以下代码添加到我的应用程序中以添加一个视频视图,该视频视图链接到我的原始文件夹中的视频,但我在 VideoView 上收到一个错误,说VideoView cannot be resolved or is not a field
我已包含所有相关的导入。我的语法中某处有错误吗?
VideoView StudentLife = (VideoView) findViewById(R.id.VideoView);
Uri uri = Uri.parse("android.resource://"+getPackageName()+"/"+R.raw.learningatgmi);
videoview.setVideoURI(uri);
videoview.start();
我的 videoview xml 布局如下:
<VideoView
android:id="@+id/videoView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView2"
android:layout_centerHorizontal="true"
android:layout_marginTop="53dp" />