Titanium Community Questions & Answer Archive

We felt that 6+ years of knowledge should not die so this is the Titanium Community Questions & Answer Archive

Titanium.Media.openPhotoGallery in fullscreen

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.

— asked March 9th 2010 by Christiana Kogevina
0 Comments

5 Answers

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

    — answered March 9th 2010 by Clint Tredway
    permalink
    0 Comments
  • 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
        });
    
    — answered March 9th 2010 by Christiana Kogevina
    permalink
    0 Comments
  • screenshot

    — answered March 9th 2010 by Christiana Kogevina
    permalink
    0 Comments
  • Never mind, I found out that if I hide statusbar before I open the window that triggers the photogallery opening the problem dissapears

    — answered March 10th 2010 by Christiana Kogevina
    permalink
    0 Comments
  • By the way, the image was:
    fullscreen photogallery

    — answered March 10th 2010 by Christiana Kogevina
    permalink
    0 Comments
The ownership of individual contributions to this community generated content is retained by the authors of their contributions.
All trademarks remain the property of the respective owner.