如何在使用Titanium开发的Android应用程序中保存实例状态?

时间:2013-07-25 23:02:22

标签: android titanium android-camera appcelerator titanium-mobile

我正在使用Titanium 3.1并开发Android 3.0及更高版本。

我的应用有一个视图,点击时会询问您是否要拍照或从图库中选择图像。当我选择从相机拍照时,相机显示没有问题我可以拍照,问题是我拍照后选择使用它,我的应用程序从一开始就恢复,而不是返回到它之前显示的状态是在选择拍照之前。

当我检查logcat时,我看到了这一行:

I/TiRootActivity(24120): (main) [0,0] checkpoint, on root activity create, savedInstanceState: null

我的应用程序的状态似乎没有被保存,但我不知道为什么。老实说,这是我第一次使用应用程序进入相机应用程序,拍照并返回应用程序。以前我曾在Titanium中使用过Intents,并且在退出使用后退按钮使用Intent打开的应用程序后,我已经能够返回到我的应用程序的正确状态。

这是我用来打开相机的代码:

var globalBabyPicture = Titanium.UI.createImageView({   
    image:imagesPath + "kinedu_0027_ic_camara.png",
    width:75,   
});

var photoOptionsViewFromCamera = Ti.UI.createView({
    width:Ti.Platform.displayCaps.platformWidth,
    height:44, 
    left:0, 
    top:1*44,
    backgroundColor:"transparent"
});

var photoOptionsViewFromCameraLabel = Ti.UI.createLabel({
    text:"from camera", 
    font:{fontSize:14, fontFamily:"Arial Rounded MT Bold"}, 
    color:"#368cd6"
});

photoOptionsViewFromCamera.add(photoOptionsViewFromCameraLabel);

photoOptionsViewFromCamera.addEventListener("touchstart", function(e){
    var animateTouchStart = Ti.UI.createAnimation({backgroundColor:"#AFD1DE", duration:150});
    photoOptionsViewFromCamera.animate(animateTouchStart);

});

//********* this is the code that triggers the camera to take the picture
photoOptionsViewFromCamera.addEventListener("touchend", function(e){
    var animateTouchEnd = Ti.UI.createAnimation({backgroundColor:"transparent", duration:150});
    photoOptionsViewFromCamera.animate(animateTouchEnd);

    animateTouchEnd.addEventListener("complete", function(e){
        Ti.Media.showCamera({
            success : function(event) {

                var tmp = Ti.Filesystem.getFile(Ti.Filesystem.tempDirectory, ('baby_temp.png'));
                    tmp.write(event.media);
                    var blob = tmp.read();

                    Ti.App.fireEvent("changePicture");

                },
            cancel : function() {
            },
            error : function(error) {
                var message;
                if (error.code == Ti.Media.NO_CAMERA) {
                    message = 'Device does not have camera capabilities';
                } else {
                    message = 'Unexpected error: ' + error.code;
                }

                Ti.UI.createAlertDialog({
                    title : 'Camera',
                    message : message
                }).show();
            },
            saveToPhotoGallery : false,
            allowEditing : true,
            mediaTypes : [Ti.Media.MEDIA_TYPE_PHOTO]
        });     
    });
});


Ti.App.addEventListener("changePicture", function(e){
    var tmp = Ti.Filesystem.getFile(Ti.Filesystem.tempDirectory, ('baby_temp.png'));
    var blob = tmp.read();

    var animationChange = Ti.UI.createAnimation({opacity:0, duration:200});

    babyImage.animate(animationChange);

    var animationChangeCompleted = Ti.UI.createAnimation({opacity:1, duration:200});

    animationChange.addEventListener("complete", function(e){
        babyImage.setWidth(100);
        var image = blob.imageAsThumbnail(150);                         
        babyImage.setImage(image);              
        babyImage.animate(animationChangeCompleted);
    });             
});

我已经检查过,成功回调永远不会发生,我认为这是因为应用程序从头开始重新启动,显示应用程序启动画面。

如何在拍摄照片后确保应用程序返回上一个视图而不从头开始恢复应用程序?

1 个答案:

答案 0 :(得分:0)

我认为allowEditing应为allowImageEditing