Ejemplo n.º 1
0
 /**
  * Returns a pre-resized movie cover. Pre-resizing is done in a way that the bitmap at least as
  * large as the specified size but not larger than the double.
  *
  * @param manager Postback manager
  * @param cover Cover object
  * @param size Minmal size to pre-resize to.
  * @return Thumbnail bitmap
  */
 public Bitmap getCover(INotifiableManager manager, ICoverArt cover, int size) {
   return getCover(
       manager, cover, size, Movie.getThumbUri(cover), Movie.getFallbackThumbUri(cover));
 }