AnimatorCompatHelper.java revision 81fc7d74aa951af803aeab9087455c2d2e027136
1/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.support.v4.animation;
18
19import android.os.Build;
20import android.view.View;
21
22/**
23 * @hide
24 */
25public final class AnimatorCompatHelper {
26
27    private final static AnimatorProvider IMPL;
28
29    static {
30        if (Build.VERSION.SDK_INT >= 12) {
31            IMPL = new HoneycombMr1AnimatorCompatProvider();
32        } else {
33            IMPL = new GingerbreadAnimatorCompatProvider();
34        }
35    }
36
37    public static ValueAnimatorCompat emptyValueAnimator() {
38        return IMPL.emptyValueAnimator();
39    }
40
41    private AnimatorCompatHelper() {}
42
43    public static void clearInterpolator(View view) {
44        IMPL.clearInterpolator(view);
45    }
46}
47