public void setLoadingLineColor(final int pLoadingLineColor) { if (mLoadingLineColor != pLoadingLineColor) { mLoadingLineColor = pLoadingLineColor; clearLoadingTile(); } }
/** * 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(); } }