0

I have a Video as background of my Activity A, when I open Activity B like this

 Intent in = new Intent(ActivityA.this, ActivityB.class);
 startActivity(in);

When I finish the Activity B like this:

ActivityB.this.finish();

The Activity´s A Background (the video) is not playing, the background is black, how can I solve it? thanks

Igor E
  • 11
  • 1
  • 5

1 Answers1

-1

use on pause and on resume in activity A

    onpause{
mvideoview.stopplaying
}

onresume{
mvideoview.start
}

this will solve your problem

Umesh Raj
  • 29
  • 1
  • 2