I am using sencha touch 1.1 and the application should be portable on several mobile platforms such as Android, iPhone, iPad and Blackberry. I need to have a splash screen at startup, and I use the body's background property to get a splash screen.
<body bgcolor="0000" style="background-image: url('images/background.png');"></body>
I used this code in my application:
onReady: function() { var panel = new Ext.Panel({ fullscreen : true, html : "Start Up Screen Test" }); }
But that will not work. Please help me do this for devices with multiple resolutions and in general.
source share