private List<GankBeauty> getDataFromDisk(String key) { Logger.d("getDataFromDisk"); List<GankBeauty> itemList = new Gson() .fromJson(mDiskCache.getAsString(key), new TypeToken<List<GankBeauty>>() {}.getType()); return itemList; }
private Data() { mDiskCache = ACache.get(App.getInstance().getApplicationContext()); }
public void clearMemoryAndDiskCache() { Logger.d("clearMemoryAndDiskCache"); clearMemoryCache(); mDiskCache.remove(DATA_FILE_NAME); }