我在Android项目中使用VideoView,需要知道它是否为空(null)。
如何识别VideoView是否为空?
我尝试了以下两种方法,但都没有效果。
if (videoView.equals(null)){
}else{
}
或者
if (videoView == null){
}else{
}
答案 0 :(得分:1)
从您的问题可以明显看出,您想知道视频文件是否存在于给定路径中。您可以在检查是否存在任何其他文件时进行检查:
File file = getContext().getFileStreamPath(FILE_NAME);
if(file.exists()){
//play the video here
} else {
//maybe show a toast message that the video file doesn't exist
}