我將下面的代碼添加到我的應用程序中,以添加視頻鏈接到我的原始文件夾中的視頻,但我得到的錯誤 VideoView說VideoView cannot be resolved or is not a field
我已經包括了所有相關的imports.Is在我的語法中的某處出現錯誤?對於videoview設置視頻視圖
VideoView StudentLife = (VideoView) findViewById(R.id.VideoView);
Uri uri = Uri.parse("android.resource://"+getPackageName()+"/"+R.raw.learningatgmi);
videoview.setVideoURI(uri);
videoview.start();
我的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" />
運行時是編譯時錯誤嗎?你能顯示xml佈局文件嗎? – 2013-03-19 12:36:47
這是一個編譯時錯誤,我只是添加了xml佈局。 – 2013-03-19 12:39:32
檢查我的答案。 – 2013-03-19 12:43:37