我阅读了这份文档 middleware 然后我用这段代码生成新代码
var myImage = new SMF.UI.Image({
top : "45%",
left : "10%",
height : "30%",
width : "80%"
});
Pages.Page1.add(myImage);
var myCodeGenerate = new SMF.UI.TextButton({
top : "30%",
left : "10%",
height : "8%",
width : "80%",
text : "Generate New Code",
onPressed : function () {
var codePath = SMFImageCode.generateCode("Landroid/content/Context;", "content to be into code", "QR_CODE", 500, 500, function (e) {
alert(e.message);
});
myImage.image = codePath;
}
});
Pages.Page1.add(myCodeGenerate);
执行代码后,我收到以下错误:
找不到变量:SMFImageCode
我正在使用Smarface App Studio 4.5.0
答案 0 :(得分:0)
我收到错误是因为我使用x86发布:(
当我使用ARM发布时,它可以工作。