Render layout to display notch in Android

167 Views Asked by At

I've tried adding layoutInDisplayCutoutMode shortEdges but it had no impact. I needed to stretch a layout to the top, something similar to the images shown in Netflix android app

1

There are 1 best solutions below

0
On

Try adding this to your theme

<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>