Last active
December 23, 2015 09:49
-
-
Save ryands/6617508 to your computer and use it in GitHub Desktop.
A proper splash screen implementation for android.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.ryands.android; | |
import android.app.Activity; | |
import android.os.Bundle; | |
/** | |
* A proper splash screen for android. | |
*/ | |
public class SplashActivity extends Activity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
throw new RuntimeException("Splash screens do not belong on Android."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
7th topmost match in Google for "android proper implementation splash activity".