10-02-2011 06:03 PM - edited 10-02-2011 06:04 PM
Hello, Can someone EXPLAIN what is meant by the Background start page? as specified by the config.xml file? The documenation is a bit vague on this subject...
What does it do? What role does it play in the application start-up? Is it necessary? What is gained by creating a background start page for your application?
10-03-2011 02:44 AM
The reference is here: http://docs.blackberry.com/en/developers/deliverab
notice the example there:
<content src="index.html" > <rim:background src="listener.html" runOnStartup="true" /> </content>
its means that the listener.html will be execute first when the device starts and / or when the application is installed ,
but,
the page of listener.html will not be appeared, it will work just on background.
10-03-2011 10:12 AM
\Well what does that mean? can I pass stuff between the listener.html and the index.html? can it be used to loadstuff and switch between index.html and some other page? is it that variables set in listener.html are global and can therefore be used in index.html or some other page?