How to get DisplayCutout height when creating an Activity?

luben picture luben · Sep 5, 2018 · Viewed 7.7k times · Source

I have a game with full screen SurfaceView (Portrait) and thread that renders continously on the surface.

The SurfaceView is initialized onCreate and its size is determined by the width and height of the screen in pixels.

After it's created, it is set as the content view of the Game Activity (no XML definitions):

Bitmap frameBuffer = Bitmap.createBitmap(screenWidth, screenHeight, Config.ARGB_8888);

MySurfaceView renderView = new MySurfaceView(this, frameBuffer);

this.setContentView(renderView);

The problem is, height of the screen doesn't include Display Cutouts (for devices that have them) and is taller than the allowed drawing screen, because the renderView is placed below the cutout area and does not use it for rendering.

I seek to find the real screen height - display cutout height so that I can make the frame buffer have that height.

Do you know if there is way to get display cutout area height onCreate, the same way we're able to get navigation/status bar height. Below is a snippet that returns navigation bar height:

Resources resources = getResources();
int resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
    int navigationBarHeight = resources.getDimensionPixelSize(resourceId);
}

Thank you for your help!

--- UPDATE ---

I will try to clarify the question more:

1) onCreate a full screen portrait SurfaceView is created with the dimensions of the screen width and height (no XML)

2) Immersive mode is enabled for API level > 19 (KitKat)

3) Screen width and height is taken with Display.getSize() or Display.getRealSize() depending on API level

4) On devices with Top Display Cutout the view is automatically placed below the cutout and bottom content is cut out, and this is the issue

5) I would like to get the height of the Display Cutout onCreate, so that I can create the SurfaceView height to be screenHeight - displayCutoutHeight.

6) The problem boils down to finding the height of the Display Cutout.

Answer

Roman Samoilenko picture Roman Samoilenko · Apr 17, 2019

There seems to be no way to get WindowInsets object in onCreate. Your Activity has to be attached to window first. So your options are:

1.

override fun onAttachedToWindow() {
    val cutout = window.decorView.rootWindowInsets.displayCutout
}

2.

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    contentView?.setOnApplyWindowInsetsListener { _, insets ->
        val cutout = insets.displayCutout
        return@setOnApplyWindowInsetsListener insets
    }
}