Lines Matching refs:action

293         public void postOnAnimation(View view, Runnable action);
294 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis);
298 public boolean performAccessibilityAction(View view, int action, Bundle arguments);
441 public void postOnAnimation(View view, Runnable action) {
442 view.postDelayed(action, getFrameTime());
444 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
445 view.postDelayed(action, getFrameTime() + delayMillis);
459 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
1243 public void postOnAnimation(View view, Runnable action) {
1244 ViewCompatJB.postOnAnimation(view, action);
1247 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
1248 ViewCompatJB.postOnAnimationDelayed(view, action, delayMillis);
1265 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
1266 return ViewCompatJB.performAccessibilityAction(view, action, arguments);
1801 * @param action The Runnable that will be executed.
1803 public static void postOnAnimation(View view, Runnable action) {
1804 IMPL.postOnAnimation(view, action);
1816 * @param action The Runnable that will be executed.
1820 public static void postOnAnimationDelayed(View view, Runnable action, long delayMillis) {
1821 IMPL.postOnAnimationDelayed(view, action, delayMillis);
1867 * Performs the specified accessibility action on the view. For
1876 * @param action The action to perform.
1877 * @param arguments Optional action arguments.
1878 * @return Whether the action was performed.
1880 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) {
1881 return IMPL.performAccessibilityAction(view, action, arguments);
2691 * action bars, input methods and more. New inset categories may be added in the future.