Automated WCAG 2.0 and WCAG 2.1 Accessibility library for Android Applications. Not an Android Developer? Check out the rest of the axe family.
Rule ID | Issue Type | |
---|---|---|
1 | Active View Name | WCAG 1.1.1 |
2 | Color Contrast | WCAG 1.4.3 |
3 | ImageView Name | WCAG 1.1.1 |
4 | Touch Size - WCAG | WCAG 2.1 |
5 | Touch Size - Custom | Best Practice |
6 | CheckBox Name | WCAG 1.3.1 |
7 | Don't Move Accessibility Focus | WCAG 3.2.2 WCAG 2.1 Change of Context |
8 | EditText Name | WCAG 1.3.1 |
9 | EditText Value | WCAG 4.1.2 |
10 | Switch Name | WCAG 2.1 |
Accessibility is hard. Sorting through endless reports, long explanations, and false positives make it worse. Our Rules will be:
- False positive free.
- Broad enough to be generally applicable.
- Discrete enough to be easy to identify and fix.
- Encourage Vendor, OS Version, and Assistive Technology agnostic solutions.
- Released to Beta any time we have something we are confident in release.
- Released to Production
- As we have substantive new features that are stable... like a New WCAG Rule.
- Any time false positives are fixed and manual tests validated.
Axe Android is simple to use, though requires a bit of knowledge of Android Accessibility to get started. Axe Android is a pure Java library. This helps encapsulate us from the volatile Android Accessibility Ecosystem and guarantees that anyone can run our library on ANY version of the operating system. There are no dependencies on any version of the Operating System nor any particular version of the Support Library. Because of this, you'll need to write a little code to get started. The process can be broken down succinctly like this:
- Implement abstract interfaces.
- Track the Event Stream.
- Build AxeContext, AxeConf, and AxeImage data.
- Run axe and consume results.
Axe Android is a pure Java library. This allows us to keep our rules very concise and human readable and encapsulates us completely from the Android Ecosystem. However, it requires more input from those who want to utilize the library. Namely that the provide implementations of the following abstract interfaces.
An AxeView.Builder
builds an AxeView
. You should be able to create a wrapper for this
information quite easily by implementing this interface within a Class that contains either an
AccessibilityNodeInfo
instance or a View
instance.
Each function in the AxeView.Builder
interface has an associated, identically named, final
property in AxeView
. The Java Doc for these properties in AxeView.java
is the best place to go for documentation on what these functions are expected to return.
The AxeEvent.Builder
builds an AxeEvent
. Is this sounding familiar yet? You should be able to
create a wrapper for AxeEvent
by implementing this interface within a class that contains an
AccessibilityEvent
.
Again, the documentation for what the properties are is best found agains the JavaDoc for the final instance properties of their associated object... AxeEvent.java.
We need access to image data to run Color Contrast analysis. An object that wraps a Bitmap
instance would be the easiest way to supply this information. Look at
AxeImage.java.
This sounds scary but it's really quite simple. Utilizing the AxeEvent.Builder
interface you built
above in conjunction with our AxeEventStream
object, track AccessibilityEvents as they flow either
- out of yor application
- into an
AccessibilityService
For example:
AxeEventStream axeEventStream = new AxeEventStream();
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
axeEventStream.addEvent(new AxeEvent(new YourEventBuilder(event)));
}
You then feed this information into the AxeContext
when you go to run axe.
With these interfaces implemented running axe is very simple.
Axe axe = new Axe(new AxeConf());
// Create an AxeView object from your AxeView.Builder implementation
AxeView axeView = new YourAxeViewBuilder(rootViewToBeAnalyzed);
// Create an AxeDevice object to help identify the device under test.
AxeDevice axeDevice = new AxeDevice(dpi, deviceName, osVersion, heightPixels, widthPixels);
// A screenshot to facilitate ColorContrast analysis and help identify issues.
AxeImage axeImage = new YourAxeImageClass(screenshotData);
// Run Axe and Get Results.
AxeResult axeResult = axe.run(new AxeContext(axeView, axeDevice, axeImage, axeEventStream));
We do our best, but we are not perfect. The BEST response when you run into a False Positive is to report it. We are very quick to fix issues in the library.
- Accepted False Positive tickets are the absolute highest priority.
- If we cannot create a 100% false positive free rule, we will demote it to a Best Practice.
HOWEVER, sometimes you cannot wait for a false positive free library. In this case, it is best to remove the associated standard, and add back in any Rules that are working.
AxeConf axeConf = new AxeConf()
.removeStandard(AxeStandard.WCAG_20)
.addRule(ImageViewName.class);
Note: We will make this easier in future releases!