Adding shortcut on/off switch, improving the service picker, and adding a switch to enable the shortcut on the lock screen. Also adjusted setting search code to avoid indexing the accessibility shortcut aside from the main accessibility settings page. Bug: 35872328 Bug: 35219988 Test: Ran in a variety of conditions, ran existing settings test. Also added basic robo test, verified existing robo tests pass. Change-Id: I4da9bad74caf96d9c8f3640e7db5417b4ee5d602
147 lines
4.9 KiB
Java
147 lines
4.9 KiB
Java
/*
|
|
* Copyright (C) 2017 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.settings.applications.defaultapps;
|
|
|
|
import android.app.AppGlobals;
|
|
import android.content.ComponentName;
|
|
import android.content.pm.ActivityInfo;
|
|
import android.content.pm.ApplicationInfo;
|
|
import android.content.pm.ComponentInfo;
|
|
import android.content.pm.PackageItemInfo;
|
|
import android.content.pm.PackageManager;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.RemoteException;
|
|
import android.os.UserHandle;
|
|
|
|
import com.android.settings.applications.PackageManagerWrapper;
|
|
import com.android.settings.widget.RadioButtonPickerFragment;
|
|
|
|
/**
|
|
* Data model representing an app in DefaultAppPicker UI.
|
|
*/
|
|
public class DefaultAppInfo extends RadioButtonPickerFragment.CandidateInfo {
|
|
|
|
public final int userId;
|
|
public final ComponentName componentName;
|
|
public final PackageItemInfo packageItemInfo;
|
|
public final String summary;
|
|
protected final PackageManagerWrapper mPm;
|
|
|
|
public DefaultAppInfo(PackageManagerWrapper pm, int uid, ComponentName cn) {
|
|
this(pm, uid, cn, null /* summary */);
|
|
}
|
|
|
|
public DefaultAppInfo(PackageManagerWrapper pm, int uid, ComponentName cn, String summary) {
|
|
this(pm, uid, cn, summary, true /* enabled */);
|
|
}
|
|
|
|
public DefaultAppInfo(PackageManagerWrapper pm, int uid, ComponentName cn, String summary,
|
|
boolean enabled) {
|
|
super(enabled);
|
|
mPm = pm;
|
|
packageItemInfo = null;
|
|
userId = uid;
|
|
componentName = cn;
|
|
this.summary = summary;
|
|
}
|
|
|
|
public DefaultAppInfo(PackageManagerWrapper pm, PackageItemInfo info, String summary,
|
|
boolean enabled) {
|
|
super(enabled);
|
|
mPm = pm;
|
|
userId = UserHandle.myUserId();
|
|
packageItemInfo = info;
|
|
componentName = null;
|
|
this.summary = summary;
|
|
}
|
|
|
|
public DefaultAppInfo(PackageManagerWrapper pm, PackageItemInfo info) {
|
|
this(pm, info, null /* summary */, true /* enabled */);
|
|
}
|
|
|
|
@Override
|
|
public CharSequence loadLabel() {
|
|
if (componentName != null) {
|
|
try {
|
|
final ComponentInfo componentInfo = getComponentInfo();
|
|
if (componentInfo != null) {
|
|
return componentInfo.loadLabel(mPm.getPackageManager());
|
|
} else {
|
|
final ApplicationInfo appInfo = mPm.getApplicationInfoAsUser(
|
|
componentName.getPackageName(), 0, userId);
|
|
return appInfo.loadLabel(mPm.getPackageManager());
|
|
}
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
return null;
|
|
}
|
|
} else if (packageItemInfo != null) {
|
|
return packageItemInfo.loadLabel(mPm.getPackageManager());
|
|
} else {
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
@Override
|
|
public Drawable loadIcon() {
|
|
if (componentName != null) {
|
|
try {
|
|
final ComponentInfo componentInfo = getComponentInfo();
|
|
if (componentInfo != null) {
|
|
return componentInfo.loadIcon(mPm.getPackageManager());
|
|
} else {
|
|
final ApplicationInfo appInfo = mPm.getApplicationInfoAsUser(
|
|
componentName.getPackageName(), 0, userId);
|
|
return appInfo.loadIcon(mPm.getPackageManager());
|
|
}
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
return null;
|
|
}
|
|
}
|
|
if (packageItemInfo != null) {
|
|
return packageItemInfo.loadIcon(mPm.getPackageManager());
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getKey() {
|
|
if (componentName != null) {
|
|
return componentName.flattenToString();
|
|
} else if (packageItemInfo != null) {
|
|
return packageItemInfo.packageName;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
private ComponentInfo getComponentInfo() {
|
|
try {
|
|
ComponentInfo componentInfo = AppGlobals.getPackageManager().getActivityInfo(
|
|
componentName, 0, userId);
|
|
if (componentInfo == null) {
|
|
componentInfo = AppGlobals.getPackageManager().getServiceInfo(
|
|
componentName, 0, userId);
|
|
}
|
|
return componentInfo;
|
|
} catch (RemoteException e) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|