Answers for "how to full screen video view in splash screen android studio"

0

splash full screen android

private fun setStatusBarGradiant(activity: Activity) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            val window: Window = activity.window
            val background = ContextCompat.getDrawable(this,R.drawable.splash_bg)
            window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
            window.statusBarColor = activity.resources.getColor(android.R.color.transparent)
            window.navigationBarColor = activity.resources.getColor(android.R.color.transparent)
            window.setBackgroundDrawable(background)
        }
    }
Posted by: Guest on January-14-2022

Code answers related to "how to full screen video view in splash screen android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language