Lines Matching refs:action

127         public void postOnAnimation(View view, Runnable action);
128 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis);
131 public boolean performAccessibilityAction(View view, int action, Bundle arguments);
177 public void postOnAnimation(View view, Runnable action) {
178 view.postDelayed(action, getFrameTime());
180 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
181 view.postDelayed(action, getFrameTime() + delayMillis);
192 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
279 public void postOnAnimation(View view, Runnable action) {
280 ViewCompatJB.postOnAnimation(view, action);
283 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
284 ViewCompatJB.postOnAnimationDelayed(view, action, delayMillis);
295 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
296 return ViewCompatJB.performAccessibilityAction(view, action, arguments);
573 * @param action The Runnable that will be executed.
575 public static void postOnAnimation(View view, Runnable action) {
576 IMPL.postOnAnimation(view, action);
588 * @param action The Runnable that will be executed.
592 public static void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
593 IMPL.postOnAnimationDelayed(view, action, delayMillis);
629 * Performs the specified accessibility action on the view. For
638 * @param action The action to perform.
639 * @param arguments Optional action arguments.
640 * @return Whether the action was performed.
642 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) {
643 return IMPL.performAccessibilityAction(view, action, arguments);