android.graphics.drawable.Drawable.ConstantState Java Examples
The following examples show how to use
android.graphics.drawable.Drawable.ConstantState.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SkinCompatDrawableManager.java From Android-skin-support with MIT License | 6 votes |
private Drawable getCachedDrawable(@NonNull final Context context, final long key) { synchronized (mDrawableCacheLock) { final LongSparseArray<WeakReference<ConstantState>> cache = mDrawableCaches.get(context); if (cache == null) { return null; } final WeakReference<ConstantState> wr = cache.get(key); if (wr != null) { // We have the key, and the secret ConstantState entry = wr.get(); if (entry != null) { return entry.newDrawable(context.getResources()); } else { // Our entry has been purged cache.delete(key); } } } return null; }
Example #2
Source File: SkinCompatDrawableManager.java From Android-skin-support with MIT License | 6 votes |
private boolean addDrawableToCache(@NonNull final Context context, final long key, @NonNull final Drawable drawable) { final ConstantState cs = drawable.getConstantState(); if (cs != null) { synchronized (mDrawableCacheLock) { LongSparseArray<WeakReference<ConstantState>> cache = mDrawableCaches.get(context); if (cache == null) { cache = new LongSparseArray<>(); mDrawableCaches.put(context, cache); } cache.put(key, new WeakReference<ConstantState>(cs)); } return true; } return false; }
Example #3
Source File: SkinCompatDrawableManager.java From Android-skin-support with MIT License | 6 votes |
private Drawable getCachedDrawable(@NonNull final Context context, final long key) { synchronized (mDrawableCacheLock) { final LongSparseArray<WeakReference<ConstantState>> cache = mDrawableCaches.get(context); if (cache == null) { return null; } final WeakReference<ConstantState> wr = cache.get(key); if (wr != null) { // We have the key, and the secret ConstantState entry = wr.get(); if (entry != null) { return entry.newDrawable(context.getResources()); } else { // Our entry has been purged cache.delete(key); } } } return null; }
Example #4
Source File: SkinCompatDrawableManager.java From Android-skin-support with MIT License | 6 votes |
private boolean addDrawableToCache(@NonNull final Context context, final long key, @NonNull final Drawable drawable) { final ConstantState cs = drawable.getConstantState(); if (cs != null) { synchronized (mDrawableCacheLock) { LongSparseArray<WeakReference<ConstantState>> cache = mDrawableCaches.get(context); if (cache == null) { cache = new LongSparseArray<>(); mDrawableCaches.put(context, cache); } cache.put(key, new WeakReference<ConstantState>(cs)); } return true; } return false; }
Example #5
Source File: SkinCompatDrawableManager.java From Android-skin-support with MIT License | 5 votes |
public void onConfigurationChanged(@NonNull Context context) { synchronized (mDrawableCacheLock) { LongSparseArray<WeakReference<ConstantState>> cache = mDrawableCaches.get(context); if (cache != null) { // Crude, but we'll just clear the cache when the configuration changes cache.clear(); } } }
Example #6
Source File: SkinCompatDrawableManager.java From Android-skin-support with MIT License | 5 votes |
public void onConfigurationChanged(@NonNull Context context) { synchronized (mDrawableCacheLock) { LongSparseArray<WeakReference<ConstantState>> cache = mDrawableCaches.get(context); if (cache != null) { // Crude, but we'll just clear the cache when the configuration changes cache.clear(); } } }
Example #7
Source File: EnvThirdResources.java From Android_Skin_2.0 with Apache License 2.0 | 5 votes |
private Drawable getCachedDrawable(LongSparseArray<WeakReference<ConstantState>> drawableCache, long key) { synchronized (mAccessLock) { WeakReference<Drawable.ConstantState> wr = drawableCache.get(key); if (wr != null) { Drawable.ConstantState entry = wr.get(); if (entry != null) { return entry.newDrawable(this); } else { drawableCache.delete(key); } } } return null; }
Example #8
Source File: Resources.java From android_9.0.0_r45 with Apache License 2.0 | 4 votes |
/** * @hide */ public LongSparseArray<ConstantState> getPreloadedDrawables() { return mResourcesImpl.getPreloadedDrawables(); }