Guest User

Untitled

a guest
Jan 29th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class SplashActivity : AppCompatActivity()
  2. {
  3. override fun onCreate(savedInstanceState: Bundle?)
  4. {
  5. setTheme(R.style.AppTheme_Splash)
  6. super.onCreate(savedInstanceState)
  7.  
  8. startActivity(Intent(this, MainActivity::class.java))
  9. finish()
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment