var url = native.fileUtils.getWritablePath() + “png_img.png”;
var s = this;
native.saveImageData(this.fixedData, width, height , url ).then(()=>{
var isTure = native.fileUtils.isFileExist(url);
//isTure 最后也是真,存在的
console.log(“保存成功”)
}).catch((e)=>{
// console.log(“Fail to save image data”);
});
安卓原生截图保存后,在真机上找不到这个png_img.png图片文件,按位置找不到,而实际上它是截图成功并可以显示出来的 ,是存在这个文件的,就是找不到,怎么解决