Search in sources :

Example 1 with PendingAttributesForViewImpl

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);
    }
}
Also used : PendingAttributesForViewImpl(org.robobinding.PendingAttributesForViewImpl) PendingAttributesForView(org.robobinding.PendingAttributesForView) PredefinedPendingAttributesForView(org.robobinding.PredefinedPendingAttributesForView)

Aggregations

PendingAttributesForView (org.robobinding.PendingAttributesForView)1 PendingAttributesForViewImpl (org.robobinding.PendingAttributesForViewImpl)1 PredefinedPendingAttributesForView (org.robobinding.PredefinedPendingAttributesForView)1