summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2011-04-12 13:27:43 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-04-12 13:27:43 -0700
commit150b4cba73bf27ce6c348e8eeadd9a7949913725 (patch)
tree81a59c5620f003d321ead35661aaa6cb9af97976 /docs
parent81b98cc9bb5ae20fc6ef5adc34c0a2c749007173 (diff)
parent6ce11bb0e1d8e0366f4321f90826d60ee1e52193 (diff)
downloadframeworks_base-150b4cba73bf27ce6c348e8eeadd9a7949913725.zip
frameworks_base-150b4cba73bf27ce6c348e8eeadd9a7949913725.tar.gz
frameworks_base-150b4cba73bf27ce6c348e8eeadd9a7949913725.tar.bz2
am 6ce11bb0: am 91470be4: am c7b94371: am b9fedd97: docs: fix broken links
* commit '6ce11bb0e1d8e0366f4321f90826d60ee1e52193': docs: fix broken links
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/practices/design/accessibility.jd14
1 files 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:</p>
<li>Make all of your user interface controls accessible with a trackball or directional
controller (d-pad).</li>
<li>Label your {@link android.widget.ImageButton}, {@link android.widget.EditText}, and other input
-widgets using the <a href="{@docRoot}reference/android/view/View#attr_android:contentDescription"
->{@code android:contentDescription}</a> attribute.</li>
+widgets using the <a
+href="{@docRoot}reference/android/view/View.html#attr_android:contentDescription">{@code
+android:contentDescription}</a> attribute.</li>
</ul>
@@ -100,8 +101,9 @@ request that a widget be given focus. Such methods include:</p>
</ul>
<p>When working with a view that is not focusable by default, you can make it focusable from the XML
-layout file by setting the <a href="{@docRoot}reference/android/view/View#attr_android:focusable"
->{@code android:focusable}</a> attribute to {@code "true"}.</p>
+layout file by setting the <a
+href="{@docRoot}reference/android/view/View.html#attr_android:focusable">{@code
+android:focusable}</a> attribute to {@code "true"}.</p>
@@ -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.</p>
<p>To provide textual information about these widgets (as an alternative to the visual cues), you
-should use the <a href="{@docRoot}reference/android/view/View#attr_android:contentDescription"
+should use the <a href="{@docRoot}reference/android/view/View.html#attr_android:contentDescription"
>{@code android:contentDescription}</a> 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.</p>
<p>You should set the <a
-href="{@docRoot}reference/android/view/View#attr_android:contentDescription" >{@code
+href="{@docRoot}reference/android/view/View.html#attr_android:contentDescription" >{@code
android:contentDescription}</a> 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.</p>