Example usage for android.transition Transition excludeTarget

List of usage examples for android.transition Transition excludeTarget

Introduction

In this page you can find the example usage for android.transition Transition excludeTarget.

Prototype

public Transition excludeTarget(Class type, boolean exclude) 

Source Link

Document

Whether to add the given type to the list of types to exclude from this transition.

Usage

From source file:ng.kingsley.android.util.TransitionUtils.java

public static Transition makeSafe(Transition transition) {
    transition.excludeTarget(android.R.id.statusBarBackground, true);
    transition.excludeTarget(android.R.id.navigationBarBackground, true);
    return transition;
}