Titanium.Media.openPhotoGallery in fullscreen

You must Login before you can answer or comment on any questions.

If I open the photogallery on a window that is in fullscreen mode the title of the photogallery does not go at the top of the window.

5 Answers

Can you share your code that opens the gallery along with a screen shot?

The button that opens the window that triggers the opening of the photogallery

but1.addEventListener('click', function(){
    var camerawin = Titanium.UI.createWindow({
        url: 'coverPhotoGallery.js',
        title: 'Photo Gallery',
        top: 0
    });
 
    camerawin.open({
        fullscreen: true
    });
});
the code that opens the photogallery

Titanium.Media.showCamera({
        success: function(event){
            ...
        },
        cancel: function(){
            ...
        },
        error: function(error){
            ...
        },
        overlay: overlay,
        saveToPhotoGallery: false,
        allowImageEditing: false
    });

Never mind, I found out that if I hide statusbar before I open the window that triggers the photogallery opening the problem dissapears

By the way, the image was: ![fullscreen photogallery](http://dl.dropbox.com/u/5249832/ss.png "fullscreen photogallery")

Your Answer

Think you can help? Login to answer this question!