Skip to content

Instantly share code, notes, and snippets.

@descorp
Created October 15, 2015 15:45
Show Gist options
  • Save descorp/c3d75b768396f2beae4d to your computer and use it in GitHub Desktop.
Save descorp/c3d75b768396f2beae4d to your computer and use it in GitHub Desktop.
protected override bool FitSystemWindows(Rect insets)
{
if (!this._mActionbarOverlay)
{
Log.Verbose(Tag, "setting padding");
int bottomPadding = insets.Bottom;
// TODO: Warning !! next version could be compromised
if (Build.VERSION.SdkInt == BuildVersionCodes.Lollipop)
{
var resources = this.GetContent().Resources;
int resourceId = resources.GetIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0)
{
bottomPadding += resources.GetDimensionPixelSize(resourceId);
}
}
this.SetPadding(insets.Left, insets.Top, insets.Right, bottomPadding);
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment