mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-02 08:56:55 +00:00
170 lines
5.6 KiB
Java
170 lines
5.6 KiB
Java
/*
|
|
* Copyright (C) 2018 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.allapps;
|
|
|
|
import static com.android.launcher3.LauncherState.NORMAL;
|
|
|
|
import android.animation.Animator;
|
|
import android.animation.AnimatorInflater;
|
|
import android.animation.AnimatorListenerAdapter;
|
|
import android.os.Handler;
|
|
import android.os.UserManager;
|
|
import android.view.MotionEvent;
|
|
|
|
import com.android.launcher3.AbstractFloatingView;
|
|
import com.android.launcher3.Launcher;
|
|
import com.android.launcher3.LauncherState;
|
|
import com.android.launcher3.R;
|
|
import com.android.launcher3.Utilities;
|
|
import com.android.launcher3.statemanager.StateManager.StateListener;
|
|
import com.android.launcher3.util.OnboardingPrefs;
|
|
|
|
/**
|
|
* Abstract base class of floating view responsible for showing discovery bounce animation
|
|
*/
|
|
public class DiscoveryBounce extends AbstractFloatingView {
|
|
|
|
private static final long DELAY_MS = 450;
|
|
|
|
private final Launcher mLauncher;
|
|
private final Animator mDiscoBounceAnimation;
|
|
|
|
private final StateListener<LauncherState> mStateListener = new StateListener<LauncherState>() {
|
|
@Override
|
|
public void onStateTransitionStart(LauncherState toState) {
|
|
handleClose(false);
|
|
}
|
|
|
|
@Override
|
|
public void onStateTransitionComplete(LauncherState finalState) {}
|
|
};
|
|
|
|
public DiscoveryBounce(Launcher launcher, float delta) {
|
|
super(launcher, null);
|
|
mLauncher = launcher;
|
|
AllAppsTransitionController controller = mLauncher.getAllAppsController();
|
|
|
|
mDiscoBounceAnimation =
|
|
AnimatorInflater.loadAnimator(launcher, R.animator.discovery_bounce);
|
|
mDiscoBounceAnimation.setTarget(new VerticalProgressWrapper(controller, delta));
|
|
mDiscoBounceAnimation.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
handleClose(false);
|
|
}
|
|
});
|
|
mDiscoBounceAnimation.addListener(controller.getProgressAnimatorListener());
|
|
launcher.getStateManager().addStateListener(mStateListener);
|
|
}
|
|
|
|
@Override
|
|
protected void onAttachedToWindow() {
|
|
super.onAttachedToWindow();
|
|
mDiscoBounceAnimation.start();
|
|
}
|
|
|
|
@Override
|
|
protected void onDetachedFromWindow() {
|
|
super.onDetachedFromWindow();
|
|
if (mDiscoBounceAnimation.isRunning()) {
|
|
mDiscoBounceAnimation.end();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onBackPressed() {
|
|
super.onBackPressed();
|
|
// Go back to the previous state (from a user's perspective this floating view isn't
|
|
// something to go back from).
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onControllerInterceptTouchEvent(MotionEvent ev) {
|
|
handleClose(false);
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
protected void handleClose(boolean animate) {
|
|
if (mIsOpen) {
|
|
mIsOpen = false;
|
|
mLauncher.getDragLayer().removeView(this);
|
|
// Reset the all-apps progress to what ever it was previously.
|
|
mLauncher.getAllAppsController().setProgress(mLauncher.getStateManager()
|
|
.getState().getVerticalProgress(mLauncher));
|
|
mLauncher.getStateManager().removeStateListener(mStateListener);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected boolean isOfType(int type) {
|
|
return (type & TYPE_DISCOVERY_BOUNCE) != 0;
|
|
}
|
|
|
|
private void show() {
|
|
mIsOpen = true;
|
|
mLauncher.getDragLayer().addView(this);
|
|
// TODO: add WW log for discovery bounce tip show event.
|
|
}
|
|
|
|
public static void showForHomeIfNeeded(Launcher launcher) {
|
|
showForHomeIfNeeded(launcher, true);
|
|
}
|
|
|
|
private static void showForHomeIfNeeded(Launcher launcher, boolean withDelay) {
|
|
OnboardingPrefs onboardingPrefs = launcher.getOnboardingPrefs();
|
|
if (!launcher.isInState(NORMAL)
|
|
|| onboardingPrefs.getBoolean(OnboardingPrefs.HOME_BOUNCE_SEEN)
|
|
|| AbstractFloatingView.getTopOpenView(launcher) != null
|
|
|| launcher.getSystemService(UserManager.class).isDemoUser()
|
|
|| Utilities.IS_RUNNING_IN_TEST_HARNESS) {
|
|
return;
|
|
}
|
|
|
|
if (withDelay) {
|
|
new Handler().postDelayed(() -> showForHomeIfNeeded(launcher, false), DELAY_MS);
|
|
return;
|
|
}
|
|
onboardingPrefs.incrementEventCount(OnboardingPrefs.HOME_BOUNCE_COUNT);
|
|
|
|
new DiscoveryBounce(launcher, 0).show();
|
|
}
|
|
|
|
/**
|
|
* A wrapper around {@link AllAppsTransitionController} allowing a fixed shift in the value.
|
|
*/
|
|
public static class VerticalProgressWrapper {
|
|
|
|
private final float mDelta;
|
|
private final AllAppsTransitionController mController;
|
|
|
|
private VerticalProgressWrapper(AllAppsTransitionController controller, float delta) {
|
|
mController = controller;
|
|
mDelta = delta;
|
|
}
|
|
|
|
public float getProgress() {
|
|
return mController.getProgress() + mDelta;
|
|
}
|
|
|
|
public void setProgress(float progress) {
|
|
mController.setProgress(progress - mDelta);
|
|
}
|
|
}
|
|
}
|