I would like to trigger an event when my VideoView is done playing? How woudl I do this? can you show me an example or direct my to some resources?
Im thinking something like this.
if(!videoView.isplaying()){
//trigger event
}
or
public void onStop(){
//trigger event
}
If you want to know when play has completed, you would use VideoView.setOnCompletionListener().
If you want to detect error cases, you would use VideoView.setOnErrorListener() instead.