我的应用程序中有一个QML Camera Element和一个QML Video元素,
当我添加摄像机时,当我为应用程序加注星标时,调试日志中会出现错误:
相机错误:“相机资源丢失了。”
如果我评论视频元素,没有问题相机再次工作
这是Video元素的代码:
Video {
id: video
width: parent.width;
height: parent.height;
source: "../blow.mp4"
z:500
visible: false
signal endOfMedia()
onStatusChanged: {
if(video.status == Video.EndOfMedia)
{
video.stop();
video.visible = false
}
}
}
这是Camera元素的代码:
Camera {
id: camera
x: 0
y: 0
width: parent.width - 10
height: parent.height -10
captureResolution : parent.height+"x"+parent.width
onImageSaved : {
qmlSignalSendPhoto( path )
}
}