使用相机后,Paint模块无法正常工作 - 即使打开相机而没有任何进一步操作也会导致此问题 - 我知道这很奇怪,但是我用旧的钛SDK工作得很好。
我正在使用SDK 5.1.1,android 4.4,测试它在Android 4.3的设备上工作正常,只有4.4或更高。
这是我的测试代码示例
Titanium.Media.showCamera({
success : function(event) {
Ti.API.info('success');
},
cancel : function() {
Ti.API.info('cancel');
},
error : function(error) {
Ti.API.info('error');
},
//allowEditing : false,
saveToPhotoGallery : true
});
var Paint = require('ti.paint');
paintView = Paint.createPaintView({
top : 10,
right : 10,
bottom : 10,
left : 10,
backgroundColor : "#fff",
strokeColor : '#000',
strokeAlpha : 255,
strokeWidth : 10,
eraseMode : false
});
paintView.addEventListener("touchstart", function(e) {
Ti.API.info('flagStart');
});
这是使用相机后的样子,写作不稳定。!!