Hide status bar in android 4.4+ or kitkat with Fullscreen

前端 未结 4 1923

I\'m using following code for hiding status bar with full screen purpose:

    void HideEverything(){
        if (Build.VERSION.SDK_INT < 16) {
                    


        
4条回答
  •  我在风中等你
    2020-12-12 02:29

    We cannot prevent the status appearing in full screen mode in kitkat or above devices, so try a hack to block the status bar from expanding.

    For an idea, put an overlay over status bar and consume all input events. It will prevent the status bar from expanding.

提交回复
热议问题