int top = _defaultInsets.top;
int left = _defaultInsets.left;
int bottom = _defaultInsets.bottom;
int right = _defaultInsets.right;
Style style = _getPaddingStyle(context);
if (style != null)
{
top = _getPadding(style, _TOP_PADDING, top);
left = _getPadding(style, _LEFT_PADDING, left);
bottom = _getPadding(style, _BOTTOM_PADDING, bottom);