Accessibility for Mobile Applications¶
Welcome to AMA!¶
if you are reading this documentation, then you have taken the first step towards creating beautiful and effective applications which are accessible to all mobile application users.
These docs include the technical specifications for the AMA library. If you would like to learn how to make accessible applications using this library, please see our primary website for tutorials and examples.
AMA Class¶
The AMA class offers a variety of static methods and functions which can be of assistance in creating your accessible Android application. During the development process, most of your interaction with AMA will be through this class. Unless otherwise specified, all methods in this class are static.
Located in edu.mit.dig.ama.core.AMA
Vision¶
The following methods are particularly useful for handling cases where a user may have impaired vision. However, they may also be used in other settings as seen fit.
boolean isTalkBackInstalled
( Context context ) [source]¶Checks to see if TalkBack is installed (note that this is the Google version of TalkBack)
Parameters: - context – The calling activity