1 Base Activity Code.
window.setFlags(
WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,
WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS
)
window.decorView.systemUiVisibility = (SYSTEM_UI_FLAG_HIDE_NAVIGATION
or SYSTEM_UI_FLAG_IMMERSIVE_STICKY
or SYSTEM_UI_FLAG_LAYOUT_STABLE
or SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
or SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)
- Hide navigation bar and Transparent status bar is working fine
- Full screen successfully but here scroll is not working please help.