-2
如何在我的android應用程序中從一個活動播放多個視頻?我有以下代碼:從android中的一個活動播放多個視頻
VideoView vd = (VideoView) findViewById(R.id.surface_view);
String movieurl = Environment.getExternalStorageDirectory() + "/content1/bio_brain.mp4";
mc = new MediaController(this);
vd.setMediaController(mc);
vd.setVideoPath(movieurl);
vd.start();
好的謝謝,但我想在一個活動中同時使用if else循環播放多個視頻 –