Lines Matching refs:event

29         int getRecordCount(AccessibilityEvent event);
30 void appendRecord(AccessibilityEvent event, Object record);
31 Object getRecord(AccessibilityEvent event, int index);
32 void setContentChangeTypes(AccessibilityEvent event, int types);
33 int getContentChangeTypes(AccessibilityEvent event);
39 public void appendRecord(AccessibilityEvent event, Object record) {
44 public Object getRecord(AccessibilityEvent event, int index) {
49 public void setContentChangeTypes(AccessibilityEvent event, int types) {
54 public int getRecordCount(AccessibilityEvent event) {
59 public int getContentChangeTypes(AccessibilityEvent event) {
67 public void appendRecord(AccessibilityEvent event, Object record) {
68 AccessibilityEventCompatIcs.appendRecord(event, record);
72 public Object getRecord(AccessibilityEvent event, int index) {
73 return AccessibilityEventCompatIcs.getRecord(event, index);
77 public int getRecordCount(AccessibilityEvent event) {
78 return AccessibilityEventCompatIcs.getRecordCount(event);
85 public void setContentChangeTypes(AccessibilityEvent event, int types) {
86 AccessibilityEventCompatKitKat.setContentChangeTypes(event, types);
90 public int getContentChangeTypes(AccessibilityEvent event) {
91 return AccessibilityEventCompatKitKat.getContentChangeTypes(event);
108 * Represents the event of a hover enter over a {@link android.view.View}.
113 * Represents the event of a hover exit over a {@link android.view.View}.
118 * Represents the event of starting a touch exploration gesture.
123 * Represents the event of ending a touch exploration gesture.
128 * Represents the event of changing the content of a window.
133 * Represents the event of scrolling a view.
138 * Represents the event of changing the selection in an {@link android.widget.EditText}.
143 * Represents the event of an application making an announcement.
148 * Represents the event of gaining accessibility focus.
153 * Represents the event of clearing accessibility focus.
158 * Represents the event of traversing the text of a view at a given movement granularity.
163 * Represents the event of beginning gesture detection.
168 * Represents the event of ending gesture detection.
173 * Represents the event of the user starting to touch the screen.
178 * Represents the event of the user ending to touch the screen.
183 * Change type for {@link #TYPE_WINDOW_CONTENT_CHANGED} event:
189 * Change type for {@link #TYPE_WINDOW_CONTENT_CHANGED} event:
195 * Change type for {@link #TYPE_WINDOW_CONTENT_CHANGED} event:
201 * Change type for {@link #TYPE_WINDOW_CONTENT_CHANGED} event:
240 * Gets the number of records contained in the event.
244 public static int getRecordCount(AccessibilityEvent event) {
245 return IMPL.getRecordCount(event);
250 * event records.
256 public static void appendRecord(AccessibilityEvent event, AccessibilityRecordCompat record) {
257 IMPL.appendRecord(event, record.getImpl());
266 public static AccessibilityRecordCompat getRecord(AccessibilityEvent event, int index) {
267 return new AccessibilityRecordCompat(IMPL.getRecord(event, index));
272 * that can be used to manipulate the event properties defined in
277 * in case you want to recycle the event.
280 * @param event The from which to create a record.
283 public static AccessibilityRecordCompat asRecord(AccessibilityEvent event) {
284 return new AccessibilityRecordCompat(event);
289 * {@link #TYPE_WINDOW_CONTENT_CHANGED} event.
295 public static void setContentChangeTypes(AccessibilityEvent event, int changeTypes) {
296 IMPL.setContentChangeTypes(event, changeTypes);
301 * {@link #TYPE_WINDOW_CONTENT_CHANGED} event. A single event may represent
312 public static int getContentChangeTypes(AccessibilityEvent event) {
313 return IMPL.getContentChangeTypes(event);