Reputation: 2256
When I read a NFC tag, I play the video on videoview on dialog pop up. I want to dialog dismiss when the video finih. How can I code this?
Upvotes: 0
Views: 483
Reputation: 23269
Set an OnCompletionListener
on the VideoView
.
In the onCompletion
call, call dialog.dismiss()
videoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
dialog.dismiss();
}
});
VideoView.setOnCompletionListener(MediaPlayer.OnCompletionListener l)
Upvotes: 1