Beispiel #1
0
 /**
  * Add a placeholder for a new image that does not exist yet.
  *
  * @param placeholder the placeholder image
  * @return A new URI used to reference this placeholder
  */
 public static Uri addPlaceholder(Bitmap placeholder) {
   Uri uri = generateUniquePlaceholderUri();
   replacePlaceholder(uri, placeholder);
   return uri;
 }