Example usage for android.support.v4.util SimpleArrayMap putAll

List of usage examples for android.support.v4.util SimpleArrayMap putAll

Introduction

In this page you can find the example usage for android.support.v4.util SimpleArrayMap putAll.

Prototype

public void putAll(SimpleArrayMap<? extends K, ? extends V> simpleArrayMap) 

Source Link

Usage

From source file:com.facebook.litho.animation.TransitionAnimationBinding.java

@Override
public void collectAppearFromValues(SimpleArrayMap<ComponentProperty, RuntimeValue> outMap) {
    outMap.putAll(mAppearFromValues);
}

From source file:com.facebook.litho.animation.TransitionAnimationBinding.java

@Override
public void collectDisappearToValues(SimpleArrayMap<ComponentProperty, RuntimeValue> outMap) {
    outMap.putAll(mDisappearToValues);
}