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