Exemplo n.º 1
0
 public void clearMemoryCache(String uri) {
   MemoryCacheKey key = new MemoryCacheKey(uri, null);
   if (mMemoryCache != null) {
     while (mMemoryCache.containsKey(key)) {
       mMemoryCache.remove(key);
     }
   }
 }