Namespaces
Variants
Actions

Alert based splashscreen in Java ME

Jump to: navigation, search

This code snippet shows a simple splashscreen created using a Java ME "Alert".

Article Metadata

Article
Created: wang_shui (29 Mar 2007)
Last edited: hamishwillee (12 Oct 2012)
public void splashScreen( 
Display d, Displayable next ){
Image logo = 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 );
}
This page was last modified on 12 October 2012, at 02:04.
176 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved