I am developing an application in which I want to show videos. Here my requirement is, I should be able to play video for while (say video A for 2 min) then I will switch to video B for another 15 seconds and then again I will switch back to video A. But whenever I switch back to video A, it should start from where it was stopped previously.

My questions are

  1. How can I achieve the switching between video?
  2. How can achieve the tagging for the video A for resuming from the previously paused time?
link|improve this question
feedback

1 Answer

How can achieve the tagging for the video A for resuming from the previously paused time?

You can do a seekTo() to jump to a particular position. But the problem here is that you should wait for the seekTo() to complete. And Android does not provide such a callback for the VideoView.

So instead I suggest that you go for Vitamio's VideoView

link|improve this answer
Hi Reno, Thanks for your reply. I have one more question. – bheema Dec 1 '11 at 12:25
Since I am developing the custom media player, so I want to have control over the android basic media player. Vitamio doesn't give that flexibility i guess?. So have decide to customize the default android player. Here my question is, Can we switch between the stream while playing?. For ex: currently my media player playing a video from stream A and then after some time i want the same media player instance(I don't want to create new instance of media player) to play a video from stream B. Is this possible? If possible how can i achieve that? – bheema Dec 1 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.