Lines Matching refs:action

150         public void postOnAnimation(View view, Runnable action);
151 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis);
154 public boolean performAccessibilityAction(View view, int action, Bundle arguments);
204 public void postOnAnimation(View view, Runnable action) {
205 view.postDelayed(action, getFrameTime());
207 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
208 view.postDelayed(action, getFrameTime() + delayMillis);
219 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
333 public void postOnAnimation(View view, Runnable action) {
334 ViewCompatJB.postOnAnimation(view, action);
337 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
338 ViewCompatJB.postOnAnimationDelayed(view, action, delayMillis);
349 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
350 return ViewCompatJB.performAccessibilityAction(view, action, arguments);
647 * @param action The Runnable that will be executed.
649 public static void postOnAnimation(View view, Runnable action) {
650 IMPL.postOnAnimation(view, action);
662 * @param action The Runnable that will be executed.
666 public static void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
667 IMPL.postOnAnimationDelayed(view, action, delayMillis);
703 * Performs the specified accessibility action on the view. For
712 * @param action The action to perform.
713 * @param arguments Optional action arguments.
714 * @return Whether the action was performed.
716 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) {
717 return IMPL.performAccessibilityAction(view, action, arguments);