diff options
author | Alan Viverette <alanv@google.com> | 2014-02-12 16:38:10 -0800 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-02-12 16:38:10 -0800 |
commit | 76769ae02e713f50816ee67ff618b748d95050a8 (patch) | |
tree | c19034aebe543d7ef6efafe1c64b4606305936c0 /api | |
parent | b67ca78d97f775cfd5b37e9a63fc708fd2897d01 (diff) | |
download | frameworks_base-76769ae02e713f50816ee67ff618b748d95050a8.zip frameworks_base-76769ae02e713f50816ee67ff618b748d95050a8.tar.gz frameworks_base-76769ae02e713f50816ee67ff618b748d95050a8.tar.bz2 |
Add selection properties to CollectionInfo, CollectionItemInfo
BUG: 12552541
Change-Id: Iae10abc02eeffea7c7fcb25020b343181e1e3482
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 3ea1aad..8de4118 100644 --- a/api/current.txt +++ b/api/current.txt @@ -30255,8 +30255,12 @@ package android.view.accessibility { public static final class AccessibilityNodeInfo.CollectionInfo { method public int getColumnCount(); method public int getRowCount(); + method public int getSelectionMode(); method public boolean isHierarchical(); method public static android.view.accessibility.AccessibilityNodeInfo.CollectionInfo obtain(int, int, boolean); + field public static final int SELECTION_MODE_MULTIPLE = 2; // 0x2 + field public static final int SELECTION_MODE_NONE = 0; // 0x0 + field public static final int SELECTION_MODE_SINGLE = 1; // 0x1 } public static final class AccessibilityNodeInfo.CollectionItemInfo { @@ -30265,6 +30269,7 @@ package android.view.accessibility { method public int getRowIndex(); method public int getRowSpan(); method public boolean isHeading(); + method public boolean isSelected(); method public static android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo obtain(int, int, int, int, boolean); } |