Java tutorial
/* * * * Copyright 2017 Bait Inc * * Licensed under the Apache License, Version 2.0 Jubilee 2017; * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * * software distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * */ package inc.bait.jubilee.model.helper.util; import android.annotation.TargetApi; import android.graphics.Bitmap; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.util.LruCache; import android.util.Log; import inc.bait.jubilee.BuildConfig; import inc.bait.jubilee.model.helper.ApiHelper; /** * Created by yoctopus on 2/13/17. */ public class ImgCache { private static final String TAG = "ImgCache"; private LruCache<String, Bitmap> mMemoryCache; private ImgCache(float memCacheSizePercent) { init(memCacheSizePercent); } public static ImgCache getInstance(android.support.v4.app.FragmentManager fragmentManager, float memCacheSizePercent) { final RetainFragment mRetainFragment = findOrCreateRetainFragment(fragmentManager); ImgCache imgCache = (ImgCache) mRetainFragment.getObject(); if (imgCache == null) { imgCache = new ImgCache(memCacheSizePercent); mRetainFragment.setObject(imgCache); } return imgCache; } private void init(float memCacheSizePercent) { int memCacheSize = calculateMemCacheSize(memCacheSizePercent); if (BuildConfig.DEBUG) { Log.d(TAG, "Memory cache created (size = " + memCacheSize + ")"); } mMemoryCache = new LruCache<String, Bitmap>(memCacheSize) { @Override protected int sizeOf(String key, Bitmap bitmap) { final int bitmapSize = getBitmapSize(bitmap) / 1024; return bitmapSize == 0 ? 1 : bitmapSize; } }; } public void addBitmapToCache(String data, Bitmap bitmap) { if (data == null || bitmap == null) { return; } // Add to memory cache if (mMemoryCache != null && mMemoryCache.get(data) == null) { mMemoryCache.put(data, bitmap); } } public Bitmap getBitmapFromMemCache(String data) { if (mMemoryCache != null) { final Bitmap memBitmap = mMemoryCache.get(data); if (memBitmap != null) { if (BuildConfig.DEBUG) { Log.d(TAG, "Memory cache hit"); } return memBitmap; } } return null; } @TargetApi(12) public static int getBitmapSize(Bitmap bitmap) { if (ApiHelper.hasHoneycombMR1()) { return bitmap.getByteCount(); } // Pre HC-MR1 return bitmap.getRowBytes() * bitmap.getHeight(); } public static int calculateMemCacheSize(float percent) { if (percent < 0.05f || percent > 0.8f) { throw new IllegalArgumentException( "setMemCacheSizePercent - percent must be " + "between 0.05 and 0.8 (inclusive)"); } return Math.round(percent * Runtime.getRuntime().maxMemory() / 1024); } public static RetainFragment findOrCreateRetainFragment(android.support.v4.app.FragmentManager fm) { RetainFragment mRetainFragment = (RetainFragment) fm.findFragmentByTag(TAG); if (mRetainFragment == null) { mRetainFragment = new RetainFragment(); fm.beginTransaction().add(mRetainFragment, TAG).commitAllowingStateLoss(); } return mRetainFragment; } public static class RetainFragment extends Fragment { private Object mObject; public RetainFragment() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Make sure this Fragment is retained over a configuration change setRetainInstance(true); } public void setObject(Object object) { mObject = object; } public Object getObject() { return mObject; } } }