Skip to content Skip to sidebar Skip to footer

Creating A Splash Screen In Sencha Touch For Different Mobile Devices Resolutions

I am using sencha touch 1.1, and the application has to be portable across multiple mobile platforms such as android, iPhone, iPad and blackberry. I need to have splash screen at s

Solution 1:

This will help you to get through to your answers. Different image with resolutions for different size screens of blackberry. http://www.sencha.com/learn/how-to-use-src-sencha-io/

Solution 2:

You have to give the spash screen for phone/tablet this way:

Ext.regApplication('App', {

    icon: 'public/resources/images/Icon.png',

    tabletStartupScreen: 'public/resources/images/tabletImage.png',

    phoneStartupScreen: 'public/resources/images/phoneImage.png',

    glossOnIcon: true,

    fullscreen: true,

    launch: function() {
    }
});

Post a Comment for "Creating A Splash Screen In Sencha Touch For Different Mobile Devices Resolutions"