Taskbar System Action with Broadcast Receiver.

Test: Manual
Bug: 265618836
Change-Id: I734402ef277a09cf5e41aa63f8be09375706c17a
This commit is contained in:
Jagrut Desai
2023-03-23 18:37:04 -07:00
parent 085c53869f
commit d2140ba498
6 changed files with 115 additions and 4 deletions

View File

@@ -17,6 +17,8 @@ package com.android.launcher3.taskbar;
import static com.android.launcher3.taskbar.LauncherTaskbarUIController.DISPLAY_PROGRESS_COUNT;
import android.app.PendingIntent;
/**
* State shared across different taskbar instance
*/
@@ -43,4 +45,7 @@ public class TaskbarSharedState {
// LauncherTaskbarUIController#mTaskbarInAppDisplayProgressMultiProp
public float[] inAppDisplayProgressMultiPropValues = new float[DISPLAY_PROGRESS_COUNT];
// Taskbar System Action
public PendingIntent taskbarSystemActionPendingIntent;
}