diff options
author | Svetoslav Ganov <svetoslavganov@google.com> | 2012-05-07 11:54:39 -0700 |
---|---|---|
committer | Svetoslav Ganov <svetoslavganov@google.com> | 2012-05-07 18:22:59 -0700 |
commit | 0a1bb6dffc358c01e10555c5c833edb7dba69659 (patch) | |
tree | d8dc9055172cf06c76dc75f3e7931201819df726 /api/current.txt | |
parent | 2551e5a1d9990514d8116e352b8e5c2f10a9d303 (diff) | |
download | frameworks_base-0a1bb6dffc358c01e10555c5c833edb7dba69659.zip frameworks_base-0a1bb6dffc358c01e10555c5c833edb7dba69659.tar.gz frameworks_base-0a1bb6dffc358c01e10555c5c833edb7dba69659.tar.bz2 |
AccessibilityNodeInfo for visible views should reported.
1. AccessibilityNodeInfos for visible views should always
be reported and the clients should be able to check
whether that node info is shown to the user. For example,
focus search may return a node that is not on the screen
and the accessibility layer may decide to give it focus
which scroll the source view in the screen.
bug:6421991
Change-Id: Idc1fd8512dda767abe802aacedb0c69582e6fc2a
Diffstat (limited to 'api/current.txt')
-rw-r--r-- | api/current.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 133a280..c5c84bc 100644 --- a/api/current.txt +++ b/api/current.txt @@ -25181,6 +25181,7 @@ package android.view.accessibility { method public boolean isPassword(); method public boolean isScrollable(); method public boolean isSelected(); + method public boolean isVisibleToUser(); method public static android.view.accessibility.AccessibilityNodeInfo obtain(android.view.View); method public static android.view.accessibility.AccessibilityNodeInfo obtain(android.view.View, int); method public static android.view.accessibility.AccessibilityNodeInfo obtain(); @@ -25210,6 +25211,7 @@ package android.view.accessibility { method public void setSource(android.view.View); method public void setSource(android.view.View, int); method public void setText(java.lang.CharSequence); + method public void setVisibleToUser(boolean); method public void writeToParcel(android.os.Parcel, int); field public static final int ACTION_ACCESSIBILITY_FOCUS = 64; // 0x40 field public static final java.lang.String ACTION_ARGUMENT_HTML_ELEMENT_STRING = "ACTION_ARGUMENT_HTML_ELEMENT_STRING"; |