From b9fedd9771a6aedf068155fd91f15baf52e668cd Mon Sep 17 00:00:00 2001 From: Scott Main Date: Tue, 12 Apr 2011 12:58:01 -0700 Subject: docs: fix broken links Change-Id: I20a2f70bc588d9eeec79419d12790f1da9b79863 --- docs/html/guide/practices/design/accessibility.jd | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/html/guide/practices/design/accessibility.jd b/docs/html/guide/practices/design/accessibility.jd index a2b314e..a66a974 100644 --- a/docs/html/guide/practices/design/accessibility.jd +++ b/docs/html/guide/practices/design/accessibility.jd @@ -60,8 +60,9 @@ access-related problems:

  • Make all of your user interface controls accessible with a trackball or directional controller (d-pad).
  • Label your {@link android.widget.ImageButton}, {@link android.widget.EditText}, and other input -widgets using the {@code android:contentDescription} attribute.
  • +widgets using the {@code +android:contentDescription} attribute. @@ -100,8 +101,9 @@ request that a widget be given focus. Such methods include:

    When working with a view that is not focusable by default, you can make it focusable from the XML -layout file by setting the {@code android:focusable} attribute to {@code "true"}.

    +layout file by setting the {@code +android:focusable} attribute to {@code "true"}.

    @@ -181,13 +183,13 @@ a label near it that indicates its purpose. When a visually impaired user acces application, these visual cues are often useless.

    To provide textual information about these widgets (as an alternative to the visual cues), you -should use the {@code android:contentDescription} attribute. The text you provide in this attribute is not visible on the screen, but if a user has enabled accessibility speech tools then the description in this attribute is read aloud to the user.

    You should set the {@code +href="{@docRoot}reference/android/view/View.html#attr_android:contentDescription" >{@code android:contentDescription} attribute on every {@link android.widget.ImageButton}, {@link android.widget.EditText}, {@link android.widget.CheckBox}, and on any other input widgets that might benefit users with extra information.

    -- cgit v1.1