使用appcelerator

时间:2016-08-29 18:59:21

标签: android screenshot appcelerator

我试图在我的Android应用程序中创建可以制作屏幕截图并将其保存到图库的按钮,但是,我找不到任何正常工作的代码并且总是会出现一些错误。有没有人知道使用appcelerator代码获取截图?现在我的代码看起来像这样无效。

    $.btnScreen.addEventListener("click",function(e){
  Ti.Media.takeScreenshot(function(){
    var image = imgView.toBlob();
f =Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory,"blog_image.jpg");
f.write(image);
});

此代码给出了一个错误:imgView未定义。 当我尝试使用不同的代码时,我也会收到无法创建图库的错误。

0 个答案:

没有答案