Henrik Karlsson
Henrik Karlsson

Reputation: 5723

What is the difference between VideoView's setVideoPath and setVideoURI

VideoView has two different ways of specifying which video to play:

What is the difference between the two and when should one or the other be used?

Upvotes: 8

Views: 4374

Answers (1)

Blundell
Blundell

Reputation: 76506

Look at the source code, nothing is different apart from the type you pass.

/**
 * Sets video path.
 *
 * @param path the path of the video.
 */
public void setVideoPath(String path) {
    setVideoURI(Uri.parse(path));
}
/**
 * Sets video URI.
 *
 * @param uri the URI of the video.
 */
public void setVideoURI(Uri uri) {
    setVideoURI(uri, null);
}

If you use setVideoPath it creates the Uri for you, so use whichever you want - depending on if you have a Uri or String path.

https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/java/android/widget/VideoView.java

Upvotes: 14

Related Questions