Exemplo n.º 1
0
 public void setLoadingLineColor(final int pLoadingLineColor) {
   if (mLoadingLineColor != pLoadingLineColor) {
     mLoadingLineColor = pLoadingLineColor;
     clearLoadingTile();
   }
 }
Exemplo n.º 2
0
 /**
  * Set the color to use to draw the background while we're waiting for the tile to load.
  *
  * @param pLoadingBackgroundColor the color to use. If the value is {@link Color#TRANSPARENT} then
  *     there will be no loading tile.
  */
 public void setLoadingBackgroundColor(final int pLoadingBackgroundColor) {
   if (mLoadingBackgroundColor != pLoadingBackgroundColor) {
     mLoadingBackgroundColor = pLoadingBackgroundColor;
     clearLoadingTile();
   }
 }