I am currently working with Sencha Touch 1.1 and I need my application to be compatible across various mobile platforms such as Android, iPhone, iPad, and Blackberry. One of the requirements is to have a splash screen at startup, which I have tried implementing using the body background property.
<body bgcolor="0000" style="background-image: url('images/background.png');"></body>
Here is the code snippet I used:
onReady: function() {
var panel = new Ext.Panel({
fullscreen : true,
html : "Start Up Screen Test"
});
}
Unfortunately, this approach did not work as expected. I need assistance in achieving this for devices with varying resolutions in a more generic manner. Can someone please advise on how to proceed?