I am very new to Kuix and J2ME so be gentle with me.
I would like to replace the "Loading" message when a Kuix application is initialising. I ideally I would like to override the method getInitializationImageFile() to return the path to an image instead of the default null, so this is what I have added to my KuixMIDLet:
public String getInitializationImageFile() {
return "/img/splash_screen.png";
}
This appears to work but the image only appears on screen for less than 1 second whereas the none overridden message "Loading" stayed on screen for over a couple of seconds, is this expected? Is the above code correct?? What is the preferred way of achieving a "Loading" splash screen???
Many thanks
John

