I have a VideoView
in one of my Activities
and if I try to press the back Button
it doesn't take me to the previous Activity
and it doesn't give any error messages in the log cat either.
I have tried overriding the onBackPressed()
method and I have tried calling the prev Activity
using an Intent
, but even then the back Button
didn't do anything.
This problem only occurs when the video is playing and even after it is finished playing. The only time the back Button
works is before the video starts playing. My VideoView
also has a MediaController
set to it.
Any ideas ?
Thanks!
Here is the link to the original post.