Merge "Using an intent-action instead of a fixed compoenent for quick-step service" into pi-dev
am: 4d40f040d3
Change-Id: Ib7d7dc54ba18a25b28482c9fdf4a18fecc8c2f81
This commit is contained in:
@@ -45,9 +45,6 @@
|
||||
interface. This name is in the ComponentName flattened format (package/class) -->
|
||||
<string name="config_statusBarComponent" translatable="false">com.android.systemui.statusbar.phone.StatusBar</string>
|
||||
|
||||
<!-- Component name of launcher service for overview to connect to -->
|
||||
<string name="config_overviewServiceComponent" translatable="false">com.android.launcher3/com.android.quickstep.TouchInteractionService</string>
|
||||
|
||||
<!-- Whether or not we show the number in the bar. -->
|
||||
<bool name="config_statusBarShowNumber">false</bool>
|
||||
|
||||
|
||||
@@ -57,6 +57,8 @@ import static com.android.systemui.shared.system.NavigationBarCompat.Interaction
|
||||
*/
|
||||
public class OverviewProxyService implements CallbackController<OverviewProxyListener>, Dumpable {
|
||||
|
||||
private static final String ACTION_QUICKSTEP = "android.intent.action.QUICKSTEP_SERVICE";
|
||||
|
||||
public static final String TAG_OPS = "OverviewProxyService";
|
||||
public static final boolean DEBUG_OVERVIEW_PROXY = false;
|
||||
private static final long BACKOFF_MILLIS = 5000;
|
||||
@@ -64,7 +66,7 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
|
||||
private final Context mContext;
|
||||
private final Handler mHandler;
|
||||
private final Runnable mConnectionRunnable = this::internalConnectToCurrentUser;
|
||||
private final ComponentName mLauncherComponentName;
|
||||
private final ComponentName mRecentsComponentName;
|
||||
private final DeviceProvisionedController mDeviceProvisionedController
|
||||
= Dependency.get(DeviceProvisionedController.class);
|
||||
private final List<OverviewProxyListener> mConnectionCallbacks = new ArrayList<>();
|
||||
@@ -191,8 +193,8 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
|
||||
mContext = context;
|
||||
mHandler = new Handler();
|
||||
mConnectionBackoffAttempts = 0;
|
||||
mLauncherComponentName = ComponentName
|
||||
.unflattenFromString(context.getString(R.string.config_overviewServiceComponent));
|
||||
mRecentsComponentName = ComponentName.unflattenFromString(context.getString(
|
||||
com.android.internal.R.string.config_recentsComponentName));
|
||||
|
||||
// Listen for the package update changes.
|
||||
if (SystemServicesProxy.getInstance(context)
|
||||
@@ -200,7 +202,7 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
|
||||
mDeviceProvisionedController.addCallback(mDeviceProvisionedCallback);
|
||||
IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
|
||||
filter.addDataScheme("package");
|
||||
filter.addDataSchemeSpecificPart(mLauncherComponentName.getPackageName(),
|
||||
filter.addDataSchemeSpecificPart(mRecentsComponentName.getPackageName(),
|
||||
PatternMatcher.PATTERN_LITERAL);
|
||||
filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
|
||||
mContext.registerReceiver(mLauncherAddedReceiver, filter);
|
||||
@@ -223,8 +225,8 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
|
||||
return;
|
||||
}
|
||||
mHandler.removeCallbacks(mConnectionRunnable);
|
||||
Intent launcherServiceIntent = new Intent();
|
||||
launcherServiceIntent.setComponent(mLauncherComponentName);
|
||||
Intent launcherServiceIntent = new Intent(ACTION_QUICKSTEP)
|
||||
.setPackage(mRecentsComponentName.getPackageName());
|
||||
boolean bound = mContext.bindServiceAsUser(launcherServiceIntent,
|
||||
mOverviewServiceConnection, Context.BIND_AUTO_CREATE,
|
||||
UserHandle.of(mDeviceProvisionedController.getCurrentUser()));
|
||||
|
||||
Reference in New Issue
Block a user