Bug: 354076686 Flag: com.android.settings.accessibility.fix_a11y_settings_search Test: Search Project Relate and verify the item shows up in the search result Test: Search Talkback with keywords, verify the Talkback shows up in the search result Test: atest AccessibilitySettingsTest Change-Id: I258ecb0928308b7cde30c12104408e11cc25ecd5
144 lines
5.7 KiB
Java
144 lines
5.7 KiB
Java
/*
|
|
* Copyright (C) 2024 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.accessibility;
|
|
|
|
import android.accessibilityservice.AccessibilityShortcutInfo;
|
|
import android.content.ComponentName;
|
|
import android.content.Context;
|
|
import android.content.pm.ActivityInfo;
|
|
import android.content.pm.PackageManager;
|
|
import android.graphics.Color;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.Bundle;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.core.content.ContextCompat;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.overlay.FeatureFactory;
|
|
import com.android.settingslib.RestrictedPreference;
|
|
import com.android.settingslib.utils.ThreadUtils;
|
|
|
|
import com.google.common.util.concurrent.ListenableFuture;
|
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
/**
|
|
* Preference item for showing an accessibility activity in a preference list
|
|
*/
|
|
public class AccessibilityActivityPreference extends RestrictedPreference {
|
|
private static final String LOG_TAG = AccessibilityActivityPreference.class.getSimpleName();
|
|
// Index of the first preference in a preference category.
|
|
private static final int FIRST_PREFERENCE_IN_CATEGORY_INDEX = -1;
|
|
private static final String TARGET_FRAGMENT =
|
|
LaunchAccessibilityActivityPreferenceFragment.class.getName();
|
|
private final AccessibilityShortcutInfo mA11yShortcutInfo;
|
|
private final PackageManager mPm;
|
|
private final ComponentName mComponentName;
|
|
private final CharSequence mLabel;
|
|
private final ListenableFuture mExtraArgumentsFuture;
|
|
|
|
public AccessibilityActivityPreference(Context context, String packageName, int uid,
|
|
AccessibilityShortcutInfo a11yShortcutInfo) {
|
|
super(context, packageName, uid);
|
|
mPm = context.getPackageManager();
|
|
mA11yShortcutInfo = a11yShortcutInfo;
|
|
mComponentName = a11yShortcutInfo.getComponentName();
|
|
mLabel = a11yShortcutInfo.getActivityInfo().loadLabel(mPm);
|
|
// setup basic info for a preference
|
|
setKey(mComponentName.flattenToString());
|
|
setTitle(mLabel);
|
|
setSummary(a11yShortcutInfo.loadSummary(mPm));
|
|
setFragment(TARGET_FRAGMENT);
|
|
setIconSize(ICON_SIZE_MEDIUM);
|
|
setIconSpaceReserved(true);
|
|
setPersistent(false); // Disable SharedPreferences.
|
|
setOrder(FIRST_PREFERENCE_IN_CATEGORY_INDEX);
|
|
|
|
// kick off image loading tasks
|
|
ThreadUtils.postOnBackgroundThread(() -> {
|
|
final Drawable icon = getA11yActivityIcon();
|
|
ThreadUtils.getUiThreadHandler().post(() -> this.setIcon(icon));
|
|
});
|
|
|
|
final Bundle extras = getExtras();
|
|
extras.putParcelable(AccessibilitySettings.EXTRA_COMPONENT_NAME, mComponentName);
|
|
|
|
mExtraArgumentsFuture = ThreadUtils.postOnBackgroundThread(this::setupDataForOpenFragment);
|
|
}
|
|
|
|
@Override
|
|
public void performClick() {
|
|
try {
|
|
mExtraArgumentsFuture.get();
|
|
} catch (InterruptedException | ExecutionException e) {
|
|
Log.e(LOG_TAG,
|
|
"Unable to finish grabbing necessary arguments to open the fragment: "
|
|
+ "componentName: " + mComponentName);
|
|
}
|
|
super.performClick();
|
|
}
|
|
|
|
/**
|
|
* Returns the label of the Accessibility Activity
|
|
*/
|
|
public CharSequence getLabel() {
|
|
return mLabel;
|
|
}
|
|
|
|
@NonNull
|
|
public ComponentName getComponentName() {
|
|
return mComponentName;
|
|
}
|
|
|
|
private Drawable getA11yActivityIcon() {
|
|
ActivityInfo activityInfo = mA11yShortcutInfo.getActivityInfo();
|
|
Drawable serviceIcon;
|
|
if (activityInfo.getIconResource() == 0) {
|
|
serviceIcon = ContextCompat.getDrawable(getContext(),
|
|
R.drawable.ic_accessibility_generic);
|
|
} else {
|
|
serviceIcon = activityInfo.loadIcon(mPm);
|
|
}
|
|
return Utils.getAdaptiveIcon(getContext(), serviceIcon, Color.WHITE);
|
|
}
|
|
|
|
private void setupDataForOpenFragment() {
|
|
final String prefKey = getKey();
|
|
final int imageRes = mA11yShortcutInfo.getAnimatedImageRes();
|
|
final CharSequence intro = mA11yShortcutInfo.loadIntro(mPm);
|
|
final CharSequence description = mA11yShortcutInfo.loadDescription(mPm);
|
|
final String htmlDescription = mA11yShortcutInfo.loadHtmlDescription(mPm);
|
|
final String settingsClassName = mA11yShortcutInfo.getSettingsActivityName();
|
|
final String tileServiceClassName = mA11yShortcutInfo.getTileServiceName();
|
|
final int metricsCategory = FeatureFactory.getFeatureFactory()
|
|
.getAccessibilityMetricsFeatureProvider()
|
|
.getDownloadedFeatureMetricsCategory(mComponentName);
|
|
|
|
ThreadUtils.getUiThreadHandler().post(() -> {
|
|
RestrictedPreferenceHelper.putBasicExtras(
|
|
this, prefKey, getTitle(), intro, description, imageRes,
|
|
htmlDescription, mComponentName, metricsCategory);
|
|
RestrictedPreferenceHelper.putSettingsExtras(this, getPackageName(), settingsClassName);
|
|
RestrictedPreferenceHelper.putTileServiceExtras(
|
|
this, getPackageName(), tileServiceClassName);
|
|
});
|
|
}
|
|
}
|