diff options
author | Alan Viverette <alanv@google.com> | 2014-08-12 14:55:56 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-08-12 14:55:56 -0700 |
commit | 029942f77d05ed3d20256403652b220c83dad6e1 (patch) | |
tree | 7876ce9e6045ebed1127ed219b004a3103d45879 /api | |
parent | 61da0fdfeece43ee4060b3334774304488e817e3 (diff) | |
download | frameworks_base-029942f77d05ed3d20256403652b220c83dad6e1.zip frameworks_base-029942f77d05ed3d20256403652b220c83dad6e1.tar.gz frameworks_base-029942f77d05ed3d20256403652b220c83dad6e1.tar.bz2 |
Add API for obtaining max text length for accessibility
BUG: 16736956
Change-Id: I15ffb9bf68e074adf3e0dbcd230367e115c03e3c
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index eb991ad..c5ef565 100644 --- a/api/current.txt +++ b/api/current.txt @@ -30809,6 +30809,7 @@ package android.text { public static class InputFilter.LengthFilter implements android.text.InputFilter { ctor public InputFilter.LengthFilter(int); method public java.lang.CharSequence filter(java.lang.CharSequence, int, int, android.text.Spanned, int, int); + method public int getMax(); } public abstract interface InputType { @@ -36042,6 +36043,7 @@ package android.view.accessibility { method public android.view.accessibility.AccessibilityNodeInfo getLabelFor(); method public android.view.accessibility.AccessibilityNodeInfo getLabeledBy(); method public int getLiveRegion(); + method public int getMaxTextLength(); method public int getMovementGranularities(); method public java.lang.CharSequence getPackageName(); method public android.view.accessibility.AccessibilityNodeInfo getParent(); @@ -36105,6 +36107,7 @@ package android.view.accessibility { method public void setLabeledBy(android.view.View, int); method public void setLiveRegion(int); method public void setLongClickable(boolean); + method public void setMaxTextLength(int); method public void setMovementGranularities(int); method public void setMultiLine(boolean); method public void setPackageName(java.lang.CharSequence); |