List of usage examples for android.net.http HttpResponseCache delete
public void delete() throws IOException
From source file:com.morlins.artists.MainActivity.java
private void clearCache(HttpResponseCache cache) throws IOException { imageLoader.clearDiskCache();//from w w w . j a v a 2 s. c om imageLoader.clearMemoryCache(); if (cache != null) cache.delete(); installCache(300 * 1024); }