What is the difference between VideoView's setVideoPath and setVideoURI

时间:2015-05-24 21:19:08

标签: java android

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?

1 个答案:

答案 0 :(得分:7)

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

相关问题