Merge "Resource resolution bug fix." into lmp-preview-dev

This commit is contained in:
Deepanshu Gupta
2014-06-24 05:37:32 +00:00
committed by Android (Google) Code Review

View File

@@ -598,8 +598,7 @@ public final class BridgeContext extends Context {
if (item != null) {
// item is a reference to a style entry. Search for it.
item = mRenderResources.findResValue(item.getValue(),
false /*forceFrameworkOnly*/);
item = mRenderResources.findResValue(item.getValue(), item.isFramework());
if (item instanceof StyleResourceValue) {
defStyleValues = (StyleResourceValue)item;