Skip to content

Instantly share code, notes, and snippets.

@msomu
Created October 6, 2014 13:34
Show Gist options
  • Save msomu/af29be2541c8e374ffba to your computer and use it in GitHub Desktop.
Save msomu/af29be2541c8e374ffba to your computer and use it in GitHub Desktop.
Splash Screen on Android
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i = new Intent(SplashActivity.this,HomeActivity.class);
startActivity(i);
finish();
}
},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment