1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
/*
* Copyright (C) 2019 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 android.accessibilityservice;
import static android.accessibilityservice.util.AccessibilityUtils.getFilteredHtmlText;
import static android.accessibilityservice.util.AccessibilityUtils.loadSafeAnimatedImage;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageManager;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.content.res.XmlResourceParser;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.util.Xml;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import java.io.IOException;
/**
* Activities of interest to users with accessibility needs may request to be targets of the
* accessibility shortcut. These activities must handle the
* {@link Intent#ACTION_MAIN} intent with category
* {@link Intent#CATEGORY_ACCESSIBILITY_SHORTCUT_TARGET}, which will be dispatched by the system
* when the user activates the shortcut when it is configured to point at this target.
*
* @see Intent#CATEGORY_ACCESSIBILITY_SHORTCUT_TARGET
*
* @hide
*/
public final class AccessibilityShortcutInfo {
private static final String TAG_ACCESSIBILITY_SHORTCUT = "accessibility-shortcut-target";
/**
* Name under which an activity component of the accessibility shortcut publishes information
* about itself. This meta-data must reference an XML resource containing an
* <code><accessibility-shortcut-target></code> tag.
*/
public static final String META_DATA = "android.accessibilityshortcut.target";
/**
* The component name of the accessibility shortcut target.
*/
private final ComponentName mComponentName;
/**
* The activity info of the accessibility shortcut target.
*/
private final ActivityInfo mActivityInfo;
/**
* Resource id of the intro of the accessibility shortcut target.
*/
private final int mIntroResId;
/**
* Resource id of the summary of the accessibility shortcut target.
*/
private final int mSummaryResId;
/**
* Resource id of the description of the accessibility shortcut target.
*/
private final int mDescriptionResId;
/**
* Resource id of the animated image of the accessibility shortcut target.
*/
private final int mAnimatedImageRes;
/**
* Resource id of the html description of the accessibility shortcut target.
*/
private final int mHtmlDescriptionRes;
/**
* The accessibility shortcut target setting activity's name, used by the system
* settings to launch the setting activity of this accessibility shortcut target.
*/
private String mSettingsActivityName;
/**
* The name of {@link android.service.quicksettings.TileService} is associated with this
* accessibility shortcut target for one to one mapping. It is used by system settings to remind
* users this accessibility service has a {@link android.service.quicksettings.TileService}.
*/
private String mTileServiceName;
/**
* Creates a new instance.
*
* @param context Context for accessing resources.
* @param activityInfo The activity info.
* @throws XmlPullParserException If a XML parsing error occurs.
* @throws IOException If a XML parsing error occurs.
*/
public AccessibilityShortcutInfo(@NonNull Context context, @NonNull ActivityInfo activityInfo)
throws XmlPullParserException, IOException {
final PackageManager packageManager = context.getPackageManager();
mComponentName = activityInfo.getComponentName();
mActivityInfo = activityInfo;
try (XmlResourceParser parser = mActivityInfo.loadXmlMetaData(
packageManager, META_DATA)) {
if (parser == null) {
throw new XmlPullParserException("Meta-data "
+ TAG_ACCESSIBILITY_SHORTCUT + " does not exist");
}
int type = 0;
while (type != XmlPullParser.END_DOCUMENT && type != XmlPullParser.START_TAG) {
type = parser.next();
}
final String nodeName = parser.getName();
if (!TAG_ACCESSIBILITY_SHORTCUT.equals(nodeName)) {
throw new XmlPullParserException("Meta-data does not start with"
+ TAG_ACCESSIBILITY_SHORTCUT + " tag");
}
final AttributeSet allAttributes = Xml.asAttributeSet(parser);
final Resources resources = packageManager.getResourcesForApplication(
mActivityInfo.applicationInfo);
final TypedArray asAttributes = resources.obtainAttributes(allAttributes,
com.android.internal.R.styleable.AccessibilityShortcutTarget);
// Gets description
mDescriptionResId = asAttributes.getResourceId(
com.android.internal.R.styleable.AccessibilityShortcutTarget_description, 0);
// Gets summary
mSummaryResId = asAttributes.getResourceId(
com.android.internal.R.styleable.AccessibilityShortcutTarget_summary, 0);
// Gets animated image
mAnimatedImageRes = asAttributes.getResourceId(
com.android.internal.R.styleable
.AccessibilityShortcutTarget_animatedImageDrawable, /* defValue= */ 0);
// Gets html description
mHtmlDescriptionRes = asAttributes.getResourceId(
com.android.internal.R.styleable.AccessibilityShortcutTarget_htmlDescription,
0);
// Get settings activity name
mSettingsActivityName = asAttributes.getString(
com.android.internal.R.styleable.AccessibilityShortcutTarget_settingsActivity);
// Get tile service class name
mTileServiceName = asAttributes.getString(
com.android.internal.R.styleable.AccessibilityShortcutTarget_tileService);
// Gets intro
mIntroResId = asAttributes.getResourceId(
com.android.internal.R.styleable.AccessibilityShortcutTarget_intro, 0);
asAttributes.recycle();
} catch (PackageManager.NameNotFoundException e) {
throw new XmlPullParserException("Unable to create context for: "
+ mActivityInfo.packageName);
}
}
/**
* The {@link ActivityInfo} of accessibility shortcut target.
*
* @return The activity info.
*/
@NonNull
public ActivityInfo getActivityInfo() {
return mActivityInfo;
}
/**
* The {@link ComponentName} of the accessibility shortcut target.
*
* @return The component name
*/
@NonNull
public ComponentName getComponentName() {
return mComponentName;
}
/**
* The localized summary of the accessibility shortcut target.
*
* @return The localized summary if available, and {@code null} if a summary
* has not been provided.
*/
@Nullable
public String loadSummary(@NonNull PackageManager packageManager) {
return loadResourceString(packageManager, mActivityInfo, mSummaryResId);
}
/**
* The localized intro of the accessibility shortcut target.
*
* @return The localized intro.
*/
@Nullable
public String loadIntro(@NonNull PackageManager packageManager) {
return loadResourceString(packageManager, mActivityInfo, mIntroResId);
}
/**
* The localized description of the accessibility shortcut target.
*
* @return The localized description.
*/
@Nullable
public String loadDescription(@NonNull PackageManager packageManager) {
return loadResourceString(packageManager, mActivityInfo, mDescriptionResId);
}
/**
* Gets the animated image resource id.
*
* @return The animated image resource id.
*
* @hide
*/
public int getAnimatedImageRes() {
return mAnimatedImageRes;
}
/**
* The animated image drawable of the accessibility shortcut target.
*
* @return The animated image drawable, or null if the resource is invalid or the image
* exceed the screen size.
*
* @hide
*/
@Nullable
public Drawable loadAnimatedImage(@NonNull Context context) {
if (mAnimatedImageRes == /* invalid */ 0) {
return null;
}
return loadSafeAnimatedImage(context, mActivityInfo.applicationInfo, mAnimatedImageRes);
}
/**
* The localized and restricted html description of the accessibility shortcut target.
* It filters the <img> tag which do not meet the custom specification and the <a> tag.
*
* @return The localized and restricted html description.
*
* @hide
*/
@Nullable
public String loadHtmlDescription(@NonNull PackageManager packageManager) {
final String htmlDescription = loadResourceString(packageManager, mActivityInfo,
mHtmlDescriptionRes);
if (htmlDescription != null) {
return getFilteredHtmlText(htmlDescription);
}
return null;
}
/**
* The settings activity name.
*
* @return The settings activity name.
*/
@Nullable
public String getSettingsActivityName() {
return mSettingsActivityName;
}
/**
* Gets the name of {@link android.service.quicksettings.TileService} is associated with
* this accessibility shortcut target.
*
* @return The class name of {@link android.service.quicksettings.TileService}.
*/
@Nullable
public String getTileServiceName() {
return mTileServiceName;
}
/**
* Gets string resource by the given activity and resource id.
*/
@Nullable
private String loadResourceString(@NonNull PackageManager packageManager,
@NonNull ActivityInfo activityInfo, int resId) {
if (resId == 0) {
return null;
}
final CharSequence text = packageManager.getText(activityInfo.packageName,
resId, activityInfo.applicationInfo);
if (text != null) {
return text.toString().trim();
}
return null;
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
return 31 * 1 + ((mComponentName == null) ? 0 : mComponentName.hashCode());
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final AccessibilityShortcutInfo other = (AccessibilityShortcutInfo) obj;
if (mComponentName == null) {
if (other.mComponentName != null) {
return false;
}
} else if (!mComponentName.equals(other.mComponentName)) {
return false;
}
return true;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("AccessibilityShortcutInfo[");
stringBuilder.append("activityInfo: ").append(mActivityInfo);
stringBuilder.append("]");
return stringBuilder.toString();
}
}
|