Метод получения строки состояния (верхняя строка, отображающая сигнал, батарею и т. Д., Как вы сказали)
private int getStatusBarHeight()
{
Resources res = this.Resources;
int resourceId = res.GetIdentifier("status_bar_height", "dimen", "android");
int height = res.GetDimensionPixelSize(resourceId);
return height;
}
The method to get navigation bar
private int getNavigationBarHeight()
{
Resources res = this.Resources;
int resourceId = res.GetIdentifier("navigation_bar_height", "dimen", "android");
int height = res.GetDimensionPixelSize(resourceId);
return height;
}