use of com.gracecode.android.presentation.cache.BitmapLruCache in project Presentation by feelinglucky.
the class Huaban method onCreate.
@Override
public void onCreate() {
super.onCreate();
mInstance = Huaban.this;
mGson = new Gson();
mRequestQueue = Volley.newRequestQueue(getApplicationContext());
mImageLoader = new ImageLoader(mRequestQueue, new BitmapLruCache(getApplicationContext()));
mDatabaseHelper = new DatabaseHelper(getApplicationContext());
mPresentationsManager = new PstManager(getApplicationContext());
}
Aggregations