*/
private BridgeTypedArray createStyleBasedTypedArray(StyleResourceValue style, int[] attrs)
throws Resources.NotFoundException {
<<<<<<< HEAD
BridgeTypedArray ta = ((BridgeResources) mSystemResources).newTypeArray(attrs.length,
false, true, null);
=======
AtomicBoolean frameworkAttributes = new AtomicBoolean();
AtomicReference attrName = new AtomicReference();
TreeMap styleNameMap = searchAttrs(attrs, frameworkAttributes, attrName);
BridgeTypedArray ta = ((BridgeResources) mSystemResources).newTypeArray(attrs.length,
style.isFramework(), frameworkAttributes.get(), attrName.get());
>>>>>>> 155cf6c1e191bb03fe24db8663715862d8e6a43d
// for each attribute, get its name so that we can search it in the style
for (int i = 0 ; i < attrs.length ; i++) { |