Categories: Java | Java ME | How To | Code Examples | Graphics | UI
This page was last modified 08:56, 25 September 2007.
Simple way to display a splashscreen in Java ME
From Forum Nokia Wiki
By using alert
public void splashScreen( Display d, Displayable next ){ Image splash = null; try { logo = Image.createImage( "/images/splashscreen.png" ); } catch( IOException e ){ } Alert a = new Alert( "SplashScreen", "", logo, null ); a.setTimeout( Alert.FOREVER ); display.setCurrent( a, next ); }
For using Canvas http://java.sun.com/developer/J2METechTips/2001/tt0820.html#tip1
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Debug | nodevelop | Mobile Java Tools & SDKs | 0 | 2003-04-09 13:11 |
| Looking for APP | BJEagle | Nokia M2M | 0 | 2004-06-05 23:04 |
| Sample Source Code? | francute | Carbide.c++ and CodeWarrior Tools | 3 | 2006-07-16 19:48 |
| problems with the form | raghda | Mobile Java General | 19 | 2007-05-08 06:31 |
| java.lang.nullpointerexception | maneeshv6 | Mobile Java General | 2 | 2008-03-25 09:36 |
