bf0ee9a305
- You can no longer long press and drag over shortcuts before lifting to launch them. - Dragging in any direction past a threshold enters spring-loaded mode. Bug: 28980830 Change-Id: I36bfc379cc983017456a3ef0314faa1ac9691c36
129 lines
4.5 KiB
Java
129 lines
4.5 KiB
Java
/*
|
|
* Copyright (C) 2016 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 com.android.launcher3.shortcuts;
|
|
|
|
import android.animation.Animator;
|
|
import android.animation.AnimatorListenerAdapter;
|
|
import android.animation.AnimatorSet;
|
|
import android.animation.ObjectAnimator;
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.graphics.Rect;
|
|
import android.util.AttributeSet;
|
|
import android.view.animation.DecelerateInterpolator;
|
|
import android.widget.FrameLayout;
|
|
|
|
import com.android.launcher3.BubbleTextView;
|
|
import com.android.launcher3.LauncherAnimUtils;
|
|
import com.android.launcher3.LauncherViewPropertyAnimator;
|
|
import com.android.launcher3.R;
|
|
import com.android.launcher3.util.PillRevealOutlineProvider;
|
|
|
|
/**
|
|
* A {@link android.widget.FrameLayout} that contains a {@link DeepShortcutView}.
|
|
* This lets us animate the DeepShortcutView (icon and text) separately from the background.
|
|
*/
|
|
public class DeepShortcutView extends FrameLayout {
|
|
|
|
private int mRadius;
|
|
private Rect mPillRect;
|
|
|
|
private BubbleTextView mBubbleText;
|
|
|
|
public DeepShortcutView(Context context) {
|
|
this(context, null, 0);
|
|
}
|
|
|
|
public DeepShortcutView(Context context, AttributeSet attrs) {
|
|
this(context, attrs, 0);
|
|
}
|
|
|
|
public DeepShortcutView(Context context, AttributeSet attrs, int defStyle) {
|
|
super(context, attrs, defStyle);
|
|
|
|
mRadius = getResources().getDimensionPixelSize(R.dimen.bg_pill_radius);
|
|
mPillRect = new Rect();
|
|
}
|
|
|
|
@Override
|
|
protected void onFinishInflate() {
|
|
super.onFinishInflate();
|
|
mBubbleText = (BubbleTextView) findViewById(R.id.deep_shortcut);
|
|
}
|
|
|
|
public BubbleTextView getBubbleText() {
|
|
return mBubbleText;
|
|
}
|
|
|
|
@Override
|
|
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
|
|
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
|
|
mPillRect.set(0, 0, getMeasuredWidth(), getMeasuredHeight());
|
|
}
|
|
|
|
@Override
|
|
public void setPivotX(float pivotX) {
|
|
super.setPivotX(pivotX);
|
|
mBubbleText.setPivotX(pivotX);
|
|
}
|
|
|
|
@Override
|
|
public void setPivotY(float pivotY) {
|
|
super.setPivotY(pivotY);
|
|
mBubbleText.setPivotY(pivotY);
|
|
}
|
|
|
|
/**
|
|
* Creates an animator to play when the shortcut container is being opened.
|
|
*
|
|
* @param animationIndex The index at which this animation will be started
|
|
* relative to other DeepShortcutView open animations.
|
|
*/
|
|
public Animator createOpenAnimation(int animationIndex, boolean isContainerAboveIcon) {
|
|
final Resources res = getResources();
|
|
setVisibility(INVISIBLE);
|
|
|
|
AnimatorSet openAnimation = LauncherAnimUtils.createAnimatorSet();
|
|
|
|
Animator reveal = new PillRevealOutlineProvider((int) getPivotX(), (int) getPivotY(),
|
|
mPillRect, mRadius).createRevealAnimator(this);
|
|
reveal.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
setVisibility(VISIBLE);
|
|
}
|
|
});
|
|
|
|
float transY = res.getDimensionPixelSize(R.dimen.deep_shortcut_anim_translation_y);
|
|
Animator translationY = ObjectAnimator.ofFloat(this, TRANSLATION_Y,
|
|
isContainerAboveIcon ? transY : -transY, 0);
|
|
|
|
// Only scale mBubbleText (the icon and text, not the background).
|
|
mBubbleText.setScaleX(0);
|
|
mBubbleText.setScaleY(0);
|
|
LauncherViewPropertyAnimator scale = new LauncherViewPropertyAnimator(mBubbleText)
|
|
.scaleX(1).scaleY(1);
|
|
|
|
openAnimation.playTogether(reveal, translationY, scale);
|
|
openAnimation.setStartDelay(animationIndex * res.getInteger(
|
|
R.integer.config_deepShortcutOpenStagger));
|
|
openAnimation.setDuration(res.getInteger(R.integer.config_deepShortcutOpenDuration));
|
|
openAnimation.setInterpolator(new DecelerateInterpolator());
|
|
return openAnimation;
|
|
}
|
|
}
|