Hello,
The reason for this problem is that the Moto G22 is a device with a hole-punch camera. For devices with a hole-punch camera, Google has set a default restriction that it does not take up space when the screen is placed horizontally.
Workaround:
Add <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
in Style to use the left space.
<style name="MainTheme" parent="Maui.SplashTheme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<item name="android:windowSplashScreenAnimationDuration">0</item>
</style>
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.