TaskViewTransform.java revision f24f21695f5609d06402cf61e3500d408b99bdcb
1/*
2 * Copyright (C) 2014 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 com.android.systemui.recents.views;
18
19import android.animation.Animator;
20import android.animation.ObjectAnimator;
21import android.animation.PropertyValuesHolder;
22import android.graphics.RectF;
23import android.util.IntProperty;
24import android.util.Property;
25import android.view.View;
26
27import java.util.ArrayList;
28
29/**
30 * The visual properties for a {@link TaskView}.
31 */
32public class TaskViewTransform {
33
34    public static final Property<View, Integer> LEFT =
35            new IntProperty<View>("left") {
36                @Override
37                public void setValue(View object, int v) {
38                    object.setLeft(v);
39                }
40
41                @Override
42                public Integer get(View object) {
43                    return object.getLeft();
44                }
45            };
46
47    public static final Property<View, Integer> TOP =
48            new IntProperty<View>("top") {
49                @Override
50                public void setValue(View object, int v) {
51                    object.setTop(v);
52                }
53
54                @Override
55                public Integer get(View object) {
56                    return object.getTop();
57                }
58            };
59
60    public static final Property<View, Integer> RIGHT =
61            new IntProperty<View>("right") {
62                @Override
63                public void setValue(View object, int v) {
64                    object.setRight(v);
65                }
66
67                @Override
68                public Integer get(View object) {
69                    return object.getRight();
70                }
71            };
72
73    public static final Property<View, Integer> BOTTOM =
74            new IntProperty<View>("bottom") {
75                @Override
76                public void setValue(View object, int v) {
77                    object.setBottom(v);
78                }
79
80                @Override
81                public Integer get(View object) {
82                    return object.getBottom();
83                }
84            };
85
86    public float translationZ = 0;
87    public float scale = 1f;
88    public float alpha = 1f;
89    public float thumbnailScale = 1f;
90
91    public boolean visible = false;
92    float p = 0f;
93
94    // This is a window-space rect used for positioning the task in the stack and freeform workspace
95    public RectF rect = new RectF();
96
97    /**
98     * Resets the current transform.
99     */
100    public void reset() {
101        translationZ = 0;
102        scale = 1f;
103        alpha = 1f;
104        thumbnailScale = 1f;
105        visible = false;
106        rect.setEmpty();
107        p = 0f;
108    }
109
110    /** Convenience functions to compare against current property values */
111    public boolean hasAlphaChangedFrom(float v) {
112        return (Float.compare(alpha, v) != 0);
113    }
114
115    public boolean hasScaleChangedFrom(float v) {
116        return (Float.compare(scale, v) != 0);
117    }
118
119    public boolean hasTranslationZChangedFrom(float v) {
120        return (Float.compare(translationZ, v) != 0);
121    }
122
123    public boolean hasRectChangedFrom(View v) {
124        return ((int) rect.left != v.getLeft()) || ((int) rect.right != v.getRight()) ||
125                ((int) rect.top != v.getTop()) || ((int) rect.bottom != v.getBottom());
126    }
127
128    /**
129     * Applies this transform to a view.
130     *
131     * @return whether hardware layers are required for this animation.
132     */
133    public boolean applyToTaskView(TaskView v, ArrayList<Animator> animators,
134            TaskViewAnimation taskAnimation, boolean allowShadows) {
135        // Return early if not visible
136        boolean requiresHwLayers = false;
137        if (!visible) {
138            return requiresHwLayers;
139        }
140
141        if (taskAnimation.isImmediate()) {
142            if (allowShadows && hasTranslationZChangedFrom(v.getTranslationZ())) {
143                v.setTranslationZ(translationZ);
144            }
145            if (hasScaleChangedFrom(v.getScaleX())) {
146                v.setScaleX(scale);
147                v.setScaleY(scale);
148            }
149            if (hasAlphaChangedFrom(v.getAlpha())) {
150                v.setAlpha(alpha);
151            }
152            if (hasRectChangedFrom(v)) {
153                v.setLeftTopRightBottom((int) rect.left, (int) rect.top, (int) rect.right,
154                        (int) rect.bottom);
155            }
156        } else {
157            if (allowShadows && hasTranslationZChangedFrom(v.getTranslationZ())) {
158                animators.add(ObjectAnimator.ofFloat(v, View.TRANSLATION_Z, v.getTranslationZ(),
159                        translationZ));
160            }
161            if (hasScaleChangedFrom(v.getScaleX())) {
162                animators.add(ObjectAnimator.ofPropertyValuesHolder(v,
163                        PropertyValuesHolder.ofFloat(View.SCALE_X, v.getScaleX(), scale),
164                        PropertyValuesHolder.ofFloat(View.SCALE_Y, v.getScaleX(), scale)));
165            }
166            if (hasAlphaChangedFrom(v.getAlpha())) {
167                animators.add(ObjectAnimator.ofFloat(v, View.ALPHA, v.getAlpha(), alpha));
168                requiresHwLayers = true;
169            }
170            if (hasRectChangedFrom(v)) {
171                animators.add(ObjectAnimator.ofPropertyValuesHolder(v,
172                        PropertyValuesHolder.ofInt(LEFT, v.getLeft(), (int) rect.left),
173                        PropertyValuesHolder.ofInt(TOP, v.getTop(), (int) rect.top),
174                        PropertyValuesHolder.ofInt(RIGHT, v.getRight(), (int) rect.right),
175                        PropertyValuesHolder.ofInt(BOTTOM, v.getBottom(), (int) rect.bottom)));
176            }
177        }
178        return requiresHwLayers;
179    }
180
181    /** Reset the transform on a view. */
182    public static void reset(TaskView v) {
183        v.setTranslationX(0f);
184        v.setTranslationY(0f);
185        v.setTranslationZ(0f);
186        v.setScaleX(1f);
187        v.setScaleY(1f);
188        v.setAlpha(1f);
189        v.getViewBounds().setClipBottom(0);
190        v.setLeftTopRightBottom(0, 0, 0, 0);
191        v.mThumbnailView.setBitmapScale(1f);
192    }
193}
194