In Xamarin Form based application for Android, I have an issue that Statusbar is overlapping ContentPage.
Setting hard code Thickness value for ContentPage in XAML may not work for each Android device.
So, I have found few solutions on blogs but not working anyone . Everywhere written that Calculate Statusbar height from Xamarin.Droid project and set padding to the content page.
So anyone please suggest about how to set Padding to top on content page on Runtime by calculating Statusbar height?
Thanks in advance.
I have found the solution :
For this we need to create Custom renderer.
Please find below mentioned code for PageRenderer from Xamarin.Droid project :
namespace ProjectName.Droid.Renderer
{
And Please find code of "MainActivity" as mentioned below for StatusBarHeight calculation :
This has solved my problem.