Example usage for android.widget VideoView stopPlayback

List of usage examples for android.widget VideoView stopPlayback

Introduction

In this page you can find the example usage for android.widget VideoView stopPlayback.

Prototype

public void stopPlayback() 

Source Link

Usage

From source file:Main.java

public static void releaseVideoView(VideoView videoView) {
    if (videoView != null) {
        videoView.stopPlayback();
        videoView.setVideoURI(null);//www .jav a  2s . c om
    }
}