use of android.content.res.Resources.ThemeKey in project platform_frameworks_base by android.
the class Resources_Theme_Delegate method setupResources.
// ---- private helper methods ----
private static boolean setupResources(Theme thisTheme) {
// Key is a space-separated list of theme ids applied that have been merged into the
// BridgeContext's theme to make thisTheme.
final ThemeKey key = thisTheme.getKey();
final int[] resId = key.mResId;
final boolean[] force = key.mForce;
boolean changed = false;
for (int i = 0, N = key.mCount; i < N; i++) {
StyleResourceValue style = resolveStyle(resId[i]);
if (style != null) {
RenderSessionImpl.getCurrentContext().getRenderResources().applyStyle(style, force[i]);
changed = true;
}
}
return changed;
}
use of android.content.res.Resources.ThemeKey in project android_frameworks_base by ResurrectionRemix.
the class Resources_Theme_Delegate method setupResources.
// ---- private helper methods ----
private static boolean setupResources(Theme thisTheme) {
// Key is a space-separated list of theme ids applied that have been merged into the
// BridgeContext's theme to make thisTheme.
final ThemeKey key = thisTheme.getKey();
final int[] resId = key.mResId;
final boolean[] force = key.mForce;
boolean changed = false;
for (int i = 0, N = key.mCount; i < N; i++) {
StyleResourceValue style = resolveStyle(resId[i]);
if (style != null) {
RenderSessionImpl.getCurrentContext().getRenderResources().applyStyle(style, force[i]);
changed = true;
}
}
return changed;
}
use of android.content.res.Resources.ThemeKey in project android_frameworks_base by ResurrectionRemix.
the class ThemedResourceCache method getThemedLocked.
/**
* Returns the cached data for the specified theme, optionally creating a
* new entry if one does not already exist.
*
* @param t the theme for which to return cached data
* @param create {@code true} to create an entry if one does not already
* exist, {@code false} otherwise
* @return the cached data for the theme, or {@code null} if the cache is
* empty and {@code create} was {@code false}
*/
@Nullable
private LongSparseArray<WeakReference<T>> getThemedLocked(@Nullable Theme t, boolean create) {
if (t == null) {
if (mNullThemedEntries == null && create) {
mNullThemedEntries = new LongSparseArray<>(1);
}
return mNullThemedEntries;
}
if (mThemedEntries == null) {
if (create) {
mThemedEntries = new ArrayMap<>(1);
} else {
return null;
}
}
final ThemeKey key = t.getKey();
LongSparseArray<WeakReference<T>> cache = mThemedEntries.get(key);
if (cache == null && create) {
cache = new LongSparseArray<>(1);
final ThemeKey keyClone = key.clone();
mThemedEntries.put(keyClone, cache);
}
return cache;
}
use of android.content.res.Resources.ThemeKey in project android_frameworks_base by DirtyUnicorns.
the class ThemedResourceCache method getThemedLocked.
/**
* Returns the cached data for the specified theme, optionally creating a
* new entry if one does not already exist.
*
* @param t the theme for which to return cached data
* @param create {@code true} to create an entry if one does not already
* exist, {@code false} otherwise
* @return the cached data for the theme, or {@code null} if the cache is
* empty and {@code create} was {@code false}
*/
@Nullable
private LongSparseArray<WeakReference<T>> getThemedLocked(@Nullable Theme t, boolean create) {
if (t == null) {
if (mNullThemedEntries == null && create) {
mNullThemedEntries = new LongSparseArray<>(1);
}
return mNullThemedEntries;
}
if (mThemedEntries == null) {
if (create) {
mThemedEntries = new ArrayMap<>(1);
} else {
return null;
}
}
final ThemeKey key = t.getKey();
LongSparseArray<WeakReference<T>> cache = mThemedEntries.get(key);
if (cache == null && create) {
cache = new LongSparseArray<>(1);
final ThemeKey keyClone = key.clone();
mThemedEntries.put(keyClone, cache);
}
return cache;
}
use of android.content.res.Resources.ThemeKey in project android_frameworks_base by DirtyUnicorns.
the class Resources_Theme_Delegate method setupResources.
// ---- private helper methods ----
private static boolean setupResources(Theme thisTheme) {
// Key is a space-separated list of theme ids applied that have been merged into the
// BridgeContext's theme to make thisTheme.
final ThemeKey key = thisTheme.getKey();
final int[] resId = key.mResId;
final boolean[] force = key.mForce;
boolean changed = false;
for (int i = 0, N = key.mCount; i < N; i++) {
StyleResourceValue style = resolveStyle(resId[i]);
if (style != null) {
RenderSessionImpl.getCurrentContext().getRenderResources().applyStyle(style, force[i]);
changed = true;
}
}
return changed;
}
Aggregations