在Intel的XDK新....使用摄像头和缓存对象建立小的应用程序
- 应用曾在模拟器......但是当我在Android手机试图测试..程序开始,但我cannt使用它...按钮donnot显示哪些应该做任何影响! 注意:在Android应用程序做所有的效果不使用intel.xdk是什么问题....非常感谢
document.addEventListener ("intel.xdk.camera.picture.add",picOk); function takePic(){ intel.xdk.camera.takePicture(100,false,"jpg"); } function importpic(){ intel.xdk.camera.importPicture(); } function picOk(pic){ if(pic.success==true) { var imgSrc=intel.xdk.camera.getPictureURL(pic.filename); $('#content').append("<img src='"+imgSrc+"' />"); } else{ if(pic.message!=undefined) alert(pic.message); else alert("error to toake picture"); } }