Posts

[ KOTLIN] VIDEO IN SPLASH SCREEN ANDROID STUDIO

Step 1 :
  • Create New Project With EmptyActivity
Step 2 :
  • Create New Folder in "res"  Name it "raw" 
  • paste your video in "raw" folder 
Step 3 : 
  • Add following code to MainActivity.kt OR your splash screen activity ( for hide status bar)

 requestWindowFeature(Window.FEATURE_NO_TITLE)
 window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN)

And for hide titlebar , Change  AppCompatActivity into Activity  

  • code Add following code in your  MainActivity.kt OR your splash screen kotlin activity :
      try {
        val videoHolder = VideoView(this)
        setContentView(videoHolder)
        val video = Uri.parse("android.resource://" + packageName + "/" + R.raw.splash)
        videoHolder.setVideoURI(video)

        videoHolder.setOnCompletionListener { jump() }  
      videoHolder.start()
    } catch (ex: Exception) {
        jump()
    }

}

override fun onTouchEvent(event: MotionEvent): Boolean {
    jump()
    return true}

private fun jump() {
    if (isFinishing)
        return   
 val intent = Intent(this, Main2Activity::class.java)
    startActivity(intent)

    finish()

Step 4 : 
  • Create new activity for your home screen, give name  "Main2Activity"
  • Run Your App
Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.