enableFullScreen

protected fun enableFullScreen(enable: Boolean)

True if you want to set fullscreen,false otherwise. If you set enableFullScreen to true,the ActionBar will not be shown.

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableFullScreen(true)
... //Other setting
}