commit | 4c730accbec923e212798d5df3fabda5a00acf60 | [log] [tgz] |
---|---|---|
author | Yara Hassan <[email protected]> | Tue Jul 09 16:56:41 2024 +0100 |
committer | Yara Hassan <[email protected]> | Tue Jul 09 19:09:13 2024 +0000 |
tree | 1c88b39ad9b2862ae31b14cfb891714d99a31999 | |
parent | 7d21876cc56b701c121f7444701deb3e5dbc709d [diff] |
Clean up dependencies for "aatf" Fixes RuntimeError caused by introducing kotlin code through transitive dependencies. Bug: 344607035 Test: local testing Change-Id: If9ceeb777d10e0409837c0bc78ea652f2335e242
To help people with disabilities access Android apps, developers of those apps need to consider how their apps will be presented to accessibility services. Some good practices can be checked by automated tools, such as if a View has a contentDescription. Other rules require human judgment, such as whether or not a contentDescription makes sense to all users.
For more information about Mobile Accessibility, see http://www.w3.org/WAI/mobile/.
This library collects various accessibility-related checks on View objects as well as AccessibilityNodeInfo objects (which the Android framework derives from Views and sends to AccessibilityServices).
The supplied gradle wrapper and build.gradle file can be used to build the Accessibility Test Framework or import the project into Android Studio.
$ ./gradlew build
Given a view, the following code runs all accessibility checks on all views in the hierarchy rooted at that view and throws an exception if any errors are found:
ImmutableSet<AccessibilityHierarchyCheck> checks = AccessibilityCheckPreset.getAccessibilityHierarchyChecksForPreset( AccessibilityCheckPreset.LATEST); AccessibilityHierarchyAndroid hierarchy = AccessibilityHierarchyAndroid.newBuilder(view).build(); List<AccessibilityHierarchyCheckResult> results = new ArrayList<>(); for (AccessibilityHierarchyCheck check : checks) { results.addAll(check.runCheckOnHierarchy(hierarchy)); } List<AccessibilityHierarchyCheckResult> errors = AccessibilityCheckResultUtils.getResultsForType( results, AccessibilityCheckResultType.ERROR); if (!errors.isEmpty()) { throw new RuntimeException(errors.get(0).getMessage().toString()); }