Exemplo n.º 1
0
 /** Cancel loading of a drawable for a certain ImageView. */
 public void cancelLoad(ImageView view) {
   String fso = mRequests.get(view);
   if (fso != null && mWorkerHandler != null) {
     mWorkerHandler.removeMessages(MSG_LOAD, fso);
   }
   mRequests.remove(view);
 }
Exemplo n.º 2
0
 public static Palette getPalette(Bitmap bitmap) {
   return CACHE.get(bitmap);
 }