Last active
May 17, 2022 03:20
-
-
Save marvaproject/a41f59cbca06c90fa296a3771d3e9c48 to your computer and use it in GitHub Desktop.
SplashScreen with a certain duration^^
This file contains 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
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) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pasang di SpashscreenActivity