This article describes the Android implementation of the splash splash screen effect method. Share to everyone for your reference, specific as follows:
Java code:
public class Splash extends activity{
private final int splash_display_lenght = 1000;
@Override
protected void onCreate (Bundle savedinstancestate) {
//TODO auto-generated method stub
Super.oncreate (savedinstancestate);
Setcontentview (R.layout.splash);
New Handler (). postdelayed (New Runnable () {
@Override public
void Run () {
//TODO auto-generated method stub
Intent mainintent = new Intent (splash.this, application.class);
Splash.this.startActivity (mainintent);
Splash.this.finish ();
}
, splash_display_lenght);
}
Androidmanifest.xml
XML code:
<application android:icon= "@drawable/icon" android:label= "@string/app_name" >
<activity android:name= ". Application "android:label=" @string/app_name ">
<intent-filter>
<action android:name=" Android.intent.action.DEFAULT "/>
<category android:name=" Ndroid.intent.category.VIEW "/>
</ intent-filter>
</activity>
<activity android:name= "Splash" android:label= "@string/app_name" >
<intent-filter>
<action android:name= "Android.intent.action.MAIN"/>
<category Android:name= "Android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
PS: Here again to provide you with a Androidmanifest.xml access control online query tool:
Android manifest Features and Permissions description Encyclopedia:
Http://tools.jb51.net/table/AndroidManifest
For more information on Android-related content readers can view the site: "The activity of Android programming skills Summary", "Android View Summary", "Android operation SQLite Database Skills Summary", " Android operation JSON format data tips summary, "Android Database Operation skills Summary", "Android File Operation skills Summary", "Android programming development of SD card Operation Summary", "Android Development introduction and Advanced Course", " Android Resource Operation tips Summary and the "Android Controls usage Summary"
I hope this article will help you with the Android program.