FileDocCategorySizeDatePackage
LeanbackTransitionHelper.javaAPI DocAndroid 5.1 API3314Thu Mar 12 22:22:56 GMT 2015android.support.v17.leanback.transition

LeanbackTransitionHelper.java

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package android.support.v17.leanback.transition;

import android.animation.AnimatorInflater;
import android.content.Context;
import android.os.Build;
import android.support.v17.leanback.R;
import android.view.Gravity;
import android.view.View;
import android.view.animation.DecelerateInterpolator;
import android.view.animation.Interpolator;

/**
 * Helper class to load Leanback specific transition.
 * @hide
 */
public class LeanbackTransitionHelper {

    static interface LeanbackTransitionHelperVersion {

        public Object loadTitleInTransition(Context context, TransitionHelper helper);

        public Object loadTitleOutTransition(Context context, TransitionHelper helper);
    }

    /*
     * Kitkat does not allow load custom transition from resource, calling
     * LeanbackTransitionHelperKitKat to build custom transition in code.
     */
    static class LeanbackTransitionHelperKitKatImpl implements LeanbackTransitionHelperVersion {

        @Override
        public Object loadTitleInTransition(Context context, TransitionHelper helper) {
            return LeanbackTransitionHelperKitKat.loadTitleInTransition(context);
        }

        @Override
        public Object loadTitleOutTransition(Context context, TransitionHelper helper) {
            return LeanbackTransitionHelperKitKat.loadTitleOutTransition(context);
        }
    }

    /*
     * Load transition from resource or just return stub for API17.
     */
    static class LeanbackTransitionHelperDefault implements LeanbackTransitionHelperVersion {

        @Override
        public Object loadTitleInTransition(Context context, TransitionHelper helper) {
            return helper.loadTransition(context, R.transition.lb_title_in);
        }

        @Override
        public Object loadTitleOutTransition(Context context, TransitionHelper helper) {
            return helper.loadTransition(context, R.transition.lb_title_out);
        }
    }

    static LeanbackTransitionHelperVersion sImpl;

    static {
        if (Build.VERSION.SDK_INT >= 21) {
            sImpl = new LeanbackTransitionHelperDefault();
        } else if (Build.VERSION.SDK_INT >= 19) {
            sImpl = new LeanbackTransitionHelperKitKatImpl();
        } else {
            // Helper will create a stub object for transition in this case.
            sImpl = new LeanbackTransitionHelperDefault();
        }
    }

    static public Object loadTitleInTransition(Context context, TransitionHelper helper) {
        return sImpl.loadTitleInTransition(context, helper);
    }

    static public Object loadTitleOutTransition(Context context, TransitionHelper helper) {
        return sImpl.loadTitleOutTransition(context, helper);
    }
}