android - How to start video from where it stopped -
i using videoview playing video. if go out of application, while returning application ie in onresume() should play video stopped.
to current progress(check in onpause):
long progress = mvideoview.getcurrentposition();
to resume (in onresume):
mvideoview.seekto(progress);
Comments
Post a Comment