2020-12-22 12:40:09 -06:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2021 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.taskbar;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
2021-04-07 11:06:40 -07:00
|
|
|
import android.graphics.Canvas;
|
|
|
|
|
import android.graphics.Paint;
|
2021-08-13 17:03:55 -07:00
|
|
|
import android.graphics.Path;
|
2020-12-22 12:40:09 -06:00
|
|
|
import android.util.AttributeSet;
|
2021-05-26 13:03:20 +01:00
|
|
|
import android.view.MotionEvent;
|
2021-02-02 17:12:08 -08:00
|
|
|
import android.view.View;
|
2020-12-22 12:40:09 -06:00
|
|
|
|
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
|
|
2021-02-02 17:12:08 -08:00
|
|
|
import com.android.launcher3.R;
|
2021-05-26 13:03:20 +01:00
|
|
|
import com.android.launcher3.testing.TestLogging;
|
|
|
|
|
import com.android.launcher3.testing.TestProtocol;
|
2021-02-02 17:12:08 -08:00
|
|
|
import com.android.launcher3.util.TouchController;
|
|
|
|
|
import com.android.launcher3.views.BaseDragLayer;
|
2021-02-02 11:04:25 -08:00
|
|
|
import com.android.systemui.shared.system.ViewTreeObserverWrapper;
|
2021-05-20 20:18:47 +00:00
|
|
|
import com.android.systemui.shared.system.ViewTreeObserverWrapper.InsetsInfo;
|
|
|
|
|
import com.android.systemui.shared.system.ViewTreeObserverWrapper.OnComputeInsetsListener;
|
2021-02-02 11:04:25 -08:00
|
|
|
|
2020-12-22 12:40:09 -06:00
|
|
|
/**
|
|
|
|
|
* Top-level ViewGroup that hosts the TaskbarView as well as Views created by it such as Folder.
|
|
|
|
|
*/
|
2021-05-21 14:41:30 -07:00
|
|
|
public class TaskbarDragLayer extends BaseDragLayer<TaskbarActivityContext> {
|
2021-02-02 17:12:08 -08:00
|
|
|
|
2021-04-07 11:06:40 -07:00
|
|
|
private final Paint mTaskbarBackgroundPaint;
|
2021-08-13 17:03:55 -07:00
|
|
|
private final Path mInvertedLeftCornerPath, mInvertedRightCornerPath;
|
2021-06-01 16:54:07 -07:00
|
|
|
private final OnComputeInsetsListener mTaskbarInsetsComputer = this::onComputeTaskbarInsets;
|
2021-02-02 17:12:08 -08:00
|
|
|
|
2021-08-13 17:03:55 -07:00
|
|
|
// Initialized in init.
|
2021-06-08 20:03:43 -07:00
|
|
|
private TaskbarDragLayerController.TaskbarDragLayerCallbacks mControllerCallbacks;
|
2021-08-13 17:03:55 -07:00
|
|
|
private float mLeftCornerRadius, mRightCornerRadius;
|
2021-05-20 20:18:47 +00:00
|
|
|
|
2021-06-01 16:54:07 -07:00
|
|
|
private float mTaskbarBackgroundOffset;
|
2021-02-02 11:04:25 -08:00
|
|
|
|
2021-05-21 14:41:30 -07:00
|
|
|
public TaskbarDragLayer(@NonNull Context context) {
|
2020-12-22 12:40:09 -06:00
|
|
|
this(context, null);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 14:41:30 -07:00
|
|
|
public TaskbarDragLayer(@NonNull Context context, @Nullable AttributeSet attrs) {
|
2020-12-22 12:40:09 -06:00
|
|
|
this(context, attrs, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 14:41:30 -07:00
|
|
|
public TaskbarDragLayer(@NonNull Context context, @Nullable AttributeSet attrs,
|
2020-12-22 12:40:09 -06:00
|
|
|
int defStyleAttr) {
|
|
|
|
|
this(context, attrs, defStyleAttr, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 14:41:30 -07:00
|
|
|
public TaskbarDragLayer(@NonNull Context context, @Nullable AttributeSet attrs,
|
2020-12-22 12:40:09 -06:00
|
|
|
int defStyleAttr, int defStyleRes) {
|
2021-02-02 17:12:08 -08:00
|
|
|
super(context, attrs, 1 /* alphaChannelCount */);
|
2021-04-07 11:06:40 -07:00
|
|
|
mTaskbarBackgroundPaint = new Paint();
|
|
|
|
|
mTaskbarBackgroundPaint.setColor(getResources().getColor(R.color.taskbar_background));
|
2021-05-25 14:35:01 -07:00
|
|
|
mTaskbarBackgroundPaint.setAlpha(0);
|
2021-08-13 17:03:55 -07:00
|
|
|
mTaskbarBackgroundPaint.setFlags(Paint.ANTI_ALIAS_FLAG);
|
|
|
|
|
mTaskbarBackgroundPaint.setStyle(Paint.Style.FILL);
|
|
|
|
|
|
|
|
|
|
// Will be set in init(), but this ensures they are always non-null.
|
|
|
|
|
mInvertedLeftCornerPath = new Path();
|
|
|
|
|
mInvertedRightCornerPath = new Path();
|
2021-06-08 20:03:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void init(TaskbarDragLayerController.TaskbarDragLayerCallbacks callbacks) {
|
|
|
|
|
mControllerCallbacks = callbacks;
|
2021-08-13 17:03:55 -07:00
|
|
|
|
|
|
|
|
// Create the paths for the inverted rounded corners above the taskbar. Start with a filled
|
|
|
|
|
// square, and then subtracting out a circle from the appropriate corner.
|
|
|
|
|
mLeftCornerRadius = mActivity.getLeftCornerRadius();
|
|
|
|
|
mRightCornerRadius = mActivity.getRightCornerRadius();
|
|
|
|
|
Path square = new Path();
|
|
|
|
|
square.addRect(0, 0, mLeftCornerRadius, mLeftCornerRadius, Path.Direction.CW);
|
|
|
|
|
Path circle = new Path();
|
|
|
|
|
circle.addCircle(mLeftCornerRadius, 0, mLeftCornerRadius, Path.Direction.CW);
|
|
|
|
|
mInvertedLeftCornerPath.op(square, circle, Path.Op.DIFFERENCE);
|
|
|
|
|
square.reset();
|
|
|
|
|
square.addRect(0, 0, mRightCornerRadius, mRightCornerRadius, Path.Direction.CW);
|
|
|
|
|
circle.reset();
|
|
|
|
|
circle.addCircle(0, 0, mRightCornerRadius, Path.Direction.CW);
|
|
|
|
|
mInvertedRightCornerPath.op(square, circle, Path.Op.DIFFERENCE);
|
|
|
|
|
|
2021-05-20 20:18:47 +00:00
|
|
|
recreateControllers();
|
2021-02-02 17:12:08 -08:00
|
|
|
}
|
|
|
|
|
|
2021-05-20 20:18:47 +00:00
|
|
|
@Override
|
|
|
|
|
public void recreateControllers() {
|
2021-05-24 15:47:38 -07:00
|
|
|
mControllers = new TouchController[] {mActivity.getDragController()};
|
2020-12-22 12:40:09 -06:00
|
|
|
}
|
2021-02-02 11:04:25 -08:00
|
|
|
|
2021-05-20 20:18:47 +00:00
|
|
|
private void onComputeTaskbarInsets(InsetsInfo insetsInfo) {
|
|
|
|
|
if (mControllerCallbacks != null) {
|
|
|
|
|
mControllerCallbacks.updateInsetsTouchability(insetsInfo);
|
2021-06-08 20:03:43 -07:00
|
|
|
mControllerCallbacks.updateContentInsets(insetsInfo.contentInsets);
|
2021-05-20 20:18:47 +00:00
|
|
|
}
|
2021-02-02 11:04:25 -08:00
|
|
|
}
|
|
|
|
|
|
2021-05-20 20:18:47 +00:00
|
|
|
protected void onDestroy() {
|
2021-02-02 11:04:25 -08:00
|
|
|
ViewTreeObserverWrapper.removeOnComputeInsetsListener(mTaskbarInsetsComputer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onAttachedToWindow() {
|
|
|
|
|
super.onAttachedToWindow();
|
|
|
|
|
ViewTreeObserverWrapper.addOnComputeInsetsListener(getViewTreeObserver(),
|
|
|
|
|
mTaskbarInsetsComputer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onDetachedFromWindow() {
|
|
|
|
|
super.onDetachedFromWindow();
|
|
|
|
|
|
2021-05-20 20:18:47 +00:00
|
|
|
onDestroy();
|
2021-02-02 11:04:25 -08:00
|
|
|
}
|
2021-02-02 17:12:08 -08:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected boolean canFindActiveController() {
|
|
|
|
|
// Unlike super class, we want to be able to find controllers when touches occur in the
|
|
|
|
|
// gesture area. For example, this allows Folder to close itself when touching the Taskbar.
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onViewRemoved(View child) {
|
|
|
|
|
super.onViewRemoved(child);
|
2021-05-20 20:18:47 +00:00
|
|
|
if (mControllerCallbacks != null) {
|
2021-05-21 14:41:30 -07:00
|
|
|
mControllerCallbacks.onDragLayerViewRemoved();
|
2021-05-20 20:18:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void dispatchDraw(Canvas canvas) {
|
2021-06-01 16:54:07 -07:00
|
|
|
float backgroundHeight = mControllerCallbacks.getTaskbarBackgroundHeight()
|
|
|
|
|
* (1f - mTaskbarBackgroundOffset);
|
2021-08-13 17:03:55 -07:00
|
|
|
canvas.save();
|
|
|
|
|
canvas.translate(0, canvas.getHeight() - backgroundHeight);
|
|
|
|
|
|
|
|
|
|
// Draw the background behind taskbar content.
|
|
|
|
|
canvas.drawRect(0, 0, canvas.getWidth(), backgroundHeight, mTaskbarBackgroundPaint);
|
|
|
|
|
|
|
|
|
|
// Draw the inverted rounded corners above the taskbar.
|
|
|
|
|
canvas.translate(0, -mLeftCornerRadius);
|
|
|
|
|
canvas.drawPath(mInvertedLeftCornerPath, mTaskbarBackgroundPaint);
|
|
|
|
|
canvas.translate(0, mLeftCornerRadius);
|
|
|
|
|
canvas.translate(canvas.getWidth() - mRightCornerRadius, -mRightCornerRadius);
|
|
|
|
|
canvas.drawPath(mInvertedRightCornerPath, mTaskbarBackgroundPaint);
|
|
|
|
|
|
|
|
|
|
canvas.restore();
|
2021-05-20 20:18:47 +00:00
|
|
|
super.dispatchDraw(canvas);
|
2021-02-02 17:12:08 -08:00
|
|
|
}
|
|
|
|
|
|
2021-04-07 11:06:40 -07:00
|
|
|
/**
|
|
|
|
|
* Sets the alpha of the background color behind all the Taskbar contents.
|
|
|
|
|
* @param alpha 0 is fully transparent, 1 is fully opaque.
|
|
|
|
|
*/
|
|
|
|
|
protected void setTaskbarBackgroundAlpha(float alpha) {
|
|
|
|
|
mTaskbarBackgroundPaint.setAlpha((int) (alpha * 255));
|
|
|
|
|
invalidate();
|
|
|
|
|
}
|
2021-05-26 13:03:20 +01:00
|
|
|
|
2021-06-01 16:54:07 -07:00
|
|
|
/**
|
|
|
|
|
* Sets the translation of the background color behind all the Taskbar contents.
|
|
|
|
|
* @param offset 0 is fully onscreen, 1 is fully offscreen.
|
|
|
|
|
*/
|
|
|
|
|
protected void setTaskbarBackgroundOffset(float offset) {
|
|
|
|
|
mTaskbarBackgroundOffset = offset;
|
|
|
|
|
invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-26 13:03:20 +01:00
|
|
|
@Override
|
|
|
|
|
public boolean dispatchTouchEvent(MotionEvent ev) {
|
|
|
|
|
TestLogging.recordMotionEvent(TestProtocol.SEQUENCE_MAIN, "Touch event", ev);
|
|
|
|
|
return super.dispatchTouchEvent(ev);
|
|
|
|
|
}
|
2020-12-22 12:40:09 -06:00
|
|
|
}
|