use of org.robobinding.PendingAttributesForViewImpl in project RoboBinding by RoboBinding.
the class BindingViewInflater method onViewCreated.
@Override
public void onViewCreated(View childView, AttributeSet attrs) {
Map<String, String> pendingAttributeMappings = bindingAttributeParser.parse(attrs);
if (!pendingAttributeMappings.isEmpty()) {
PendingAttributesForView pendingAttributesForView = new PendingAttributesForViewImpl(childView, pendingAttributeMappings);
resolveAndAddViewBindingAttributes(pendingAttributesForView);
}
}
Aggregations