how to play videos one by one simultaneously?
Now i have a problem, I have more than 3 videos,Now i have to play first videos, can't move next videos. How to do that...
vidview.setVideoPath(vidname[i].toString()+".3gp||.mp4");
System.out.println("\n\n\n File name is: "+vidname[i].toString());
vidview.requestFocus();
vidview.start();
vidview.setOnCompletionListener(new OnCompletionListener() {
public void onCompletion(MediaPlayer mp) {
// TODO Auto-generated method stub
mp.stop();
run();
}
});