Skip to content

Instantly share code, notes, and snippets.

@Lanace
Created July 17, 2017 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lanace/fd166772d4003e691aa2dfc6f086f895 to your computer and use it in GitHub Desktop.
Save Lanace/fd166772d4003e691aa2dfc6f086f895 to your computer and use it in GitHub Desktop.
SplashActivity
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent(this, MainActivity.class);
startActivity(intent);
finish();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment