Home | History | Annotate | Download | only in accessibility
      1 page.title=Accessibility
      2 parent.title=User Interface
      3 parent.link=../index.html
      4 @jd:body
      5 
      6 <div id="qv-wrapper">
      7 <div id="qv">
      8 
      9   <h2>Topics</h2>
     10   <ol>
     11   <li><a href="{@docRoot}guide/topics/ui/accessibility/apps.html">Making Applications Accessible</a>
     12     </li>
     13   <li><a href="{@docRoot}guide/topics/ui/accessibility/services.html">Building Accessibility
     14     Services</a></li>
     15   </ol>
     16 
     17   <h2>Key classes</h2>
     18   <ol>
     19     <li>{@link android.view.accessibility.AccessibilityEvent}</li>
     20     <li>{@link android.accessibilityservice.AccessibilityService}</li>
     21   </ol>
     22   
     23   <h2>See also</h2>
     24   <ol>
     25     <li><a href="{@docRoot}training/accessibility/index.html">Implementing Accessibility</a></li>
     26   </ol>
     27 
     28 </div>
     29 </div>
     30 
     31 <p>Many Android users have disabilities that require them to interact with their Android devices in
     32 different ways. These include users who have visual, physical or age-related disabilities that
     33 prevent them from fully seeing or using a touchscreen.</p>
     34 
     35 <p>Android provides accessibility features and services for helping these users navigate their
     36 devices more easily, including text-to-speech, haptic feedback, trackball and D-pad navigation that
     37 augment their experience. Android application developers can take advantage of these services to
     38 make their applications more accessible and also build their own accessibility services.</p>
     39 
     40 <p>The following topics show you how to use the Android framework to make applications more
     41 accessible.</p>
     42 
     43 <dl>
     44   <dt><strong><a href="{@docRoot}guide/topics/ui/accessibility/apps.html">Making Applications
     45 Accessible</a></strong>
     46   </dt>
     47   <dd>Development practices and API features to ensure your application is accessible to users with
     48 disabilities.</dd>
     49 
     50   <dt><strong><a href="{@docRoot}guide/topics/ui/accessibility/services.html">Building Accessibility
     51 Services</a></strong>
     52   </dt>
     53   <dd>How to use API features to build services that make other applications more accessible for
     54 users.</dd>
     55 </dl>
     56