summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2011-03-24 12:26:58 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-03-24 12:26:58 -0700
commit119e79cf2763592389b4543612400d746bb9aeb2 (patch)
treed38c4217a90e906779c644a3a0de12d516482463
parent95cb883c066b754a96c899b48bd487e2ad0f213d (diff)
parente0b3f2a788e63a10b0fa21bdd700fbcf7e1add34 (diff)
downloadframeworks_base-119e79cf2763592389b4543612400d746bb9aeb2.zip
frameworks_base-119e79cf2763592389b4543612400d746bb9aeb2.tar.gz
frameworks_base-119e79cf2763592389b4543612400d746bb9aeb2.tar.bz2
am e0b3f2a7: docs: fix a few things in a11y doc
* commit 'e0b3f2a788e63a10b0fa21bdd700fbcf7e1add34': docs: fix a few things in a11y doc
-rw-r--r--docs/html/guide/practices/design/accessibility.jd21
1 files changed, 10 insertions, 11 deletions
diff --git a/docs/html/guide/practices/design/accessibility.jd b/docs/html/guide/practices/design/accessibility.jd
index dec815f..4590682 100644
--- a/docs/html/guide/practices/design/accessibility.jd
+++ b/docs/html/guide/practices/design/accessibility.jd
@@ -45,17 +45,16 @@ href="{@docRoot}resources/samples/AccessibilityService/index.html">Accessibility
<p>Many Android users have disabilities that require them to interact with their Android devices in
-different ways. These include users who have visual, physical or aging-related disabilities that
+different ways. These include users who have visual, physical or age-related disabilities that
prevent them from fully using or seeing a touchscreen.</p>
<p>Android provides an accessibility layer that helps these users navigate their Android-powered
devices more easily. Android's accessibility services provide things like text-to-speech, haptic
-feedback and trackball/D-pad navigation that augment the user experience.</p>
+feedback, and trackball/d-pad navigation that augment the user experience.</p>
<p>Your application should follow the guidelines in this document to ensure that it provides a
-good experience for users with disabilities.</p>
-
-<p>Following these two basic rules will solve most access-related problems:</p>
+good experience for users with disabilities. Following these two basic rules will solve most
+access-related problems:</p>
<ul>
<li>Make all of your user interface controls accessible with a trackball or directional
@@ -72,7 +71,7 @@ widgets using the <a href="{@docRoot}reference/android/view/View#attr_android:co
<p>Many Android devices come with some sort of directional controller, such as:</p>
<ul>
<li>A clickable trackball that users can move in any direction</li>
-<li>A clickable D-pad that allows users to navigate in four directions.</li>
+<li>A clickable d-pad that allows users to navigate in four directions.</li>
<li>Arrow keys and an OK button that’s equivalent to clicking a trackball or d-pad.</li>
</ul>
@@ -110,22 +109,22 @@ layout file by setting the <a href="{@docRoot}reference/android/view/View#attr_a
<p>When the user navigates in any direction using the directional controls, focus is passed from one
view to another, as determined by the focus ordering. The ordering of the focus movement is based on
-an algorithm which finds the nearest neighbor in a given direction. In rare cases, the default
+an algorithm that finds the nearest neighbor in a given direction. In rare cases, the default
algorithm may not match the order that you intended for your UI. In these situations, you can
provide explicit overrides to the ordering using the following XML attributes in the layout
file:</p>
<dl>
- <dt><a href="{@docRoot}reference/android/view/View#attr_android:nextFocusDown"
+ <dt><a href="{@docRoot}reference/android/view/View.html#attr_android:nextFocusDown"
>{@code android:nextFocusDown}</a></dt>
<dd>Defines the next view to receive focus when the user navigates down.</dd>
- <a><a href="{@docRoot}reference/android/view/View#attr_android:nextFocusLeft"
+ <a><a href="{@docRoot}reference/android/view/View.html#attr_android:nextFocusLeft"
>{@code android:nextFocusLeft}</a></dt>
<dd>Defines the next view to receive focus when the user navigates left.</dd>
- <dt><a href="{@docRoot}reference/android/view/View#attr_android:nextFocusRight"
+ <dt><a href="{@docRoot}reference/android/view/View.html#attr_android:nextFocusRight"
>{@code android:nextFocusRight}</a></dt>
<dd>Defines the next view to receive focus when the user navigates right.</dd>
- <dt><a href="{@docRoot}reference/android/view/View#attr_android:nextFocusUp"
+ <dt><a href="{@docRoot}reference/android/view/View.html#attr_android:nextFocusUp"
>{@code android:nextFocusUp}</a></dt>
<dd>Defines the next view to receive focus when the user navigates up.</dd>
</dl>