/**
  * Returns the bottom side margin of the logo
  *
  * @return The bottom margin in pixels
  */
 public int getAttributionMarginBottom() {
   return attributionSettings.getMargins()[3];
 }
 /**
  * Returns the top side margin of the attribution view.
  *
  * @return The top margin in pixels
  */
 public int getAttributionMarginTop() {
   return attributionSettings.getMargins()[1];
 }
 /**
  * Returns the right side margin of the attribution view.
  *
  * @return The right margin in pixels
  */
 public int getAttributionMarginRight() {
   return attributionSettings.getMargins()[2];
 }
 /**
  * Returns the left side margin of the attribution view.
  *
  * @return The left margin in pixels
  */
 public int getAttributionMarginLeft() {
   return attributionSettings.getMargins()[0];
 }
 /**
  * Returns the bottom side margin of the logo
  *
  * @return The bottom margin in pixels
  */
 public int getLogoMarginBottom() {
   return logoSettings.getMargins()[3];
 }
 /**
  * Returns the right side margin of the logo
  *
  * @return The right margin in pixels
  */
 public int getLogoMarginRight() {
   return logoSettings.getMargins()[2];
 }
 /**
  * Returns the top side margin of the logo
  *
  * @return The top margin in pixels
  */
 public int getLogoMarginTop() {
   return logoSettings.getMargins()[1];
 }
 /**
  * Returns the left side margin of the logo
  *
  * @return The left margin in pixels
  */
 public int getLogoMarginLeft() {
   return logoSettings.getMargins()[0];
 }