Volley won't cache my requests
问题 I am trying to cache data for offline usage without success. Below is my work so far. //fetch news details private void FetchHeadline(){ showDialog(); btnRefresh.setVisibility(View.GONE); // We first check for cached request Cache cache = AppController.getInstance().getRequestQueue().getCache(); Entry entry = cache.get(NEWS_URL); if (entry != null) { Log.e("", "babaaaaaaaaaaaaaaaaaaaaaaaa"); // fetch the data from cache try { String data = new String(entry.data, "UTF-8"); try { parseJsonFeed