Back to project page marriagenda.
The source code is released under:
MIT License
If you think the Android project marriagenda listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.marriagenda.marriagendamobile; /*from w w w. j ava 2 s .co m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; public class MarriagendaSplash extends Activity { private static int SPLASH_TIME = 3000; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.marriagenda_splash); new Handler().postDelayed(new Runnable() { @Override public void run() { Intent i = new Intent(MarriagendaSplash.this, marriagendaLogin.class); i.putExtra("LastActivity","MarriagendaSplash"); startActivity(i); finish(); } }, SPLASH_TIME); } }