Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marvaproject/a41f59cbca06c90fa296a3771d3e9c48 to your computer and use it in GitHub Desktop.
Save marvaproject/a41f59cbca06c90fa296a3771d3e9c48 to your computer and use it in GitHub Desktop.
SplashScreen with a certain duration^^
class Splashscreen : AppCompatActivity() {
private val splashLongTimeOut: Long = 2000
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_splashscreen)
Handler().postDelayed({
startActivity(Intent(this, MainActivity::class.java))
finish()
}, splashLongTimeOut)
}
}
@marvaproject
Copy link
Author

Pasang di SpashscreenActivity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment