Searched defs:animate (Results 1 - 25 of 124) sorted by relevance

12345

/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAbstractLayoutTest.java47 animate(v);
56 public void animate(View v) { method in class:AbstractLayoutTest
H A DAlignmentTest.java60 animate(v);
106 public static void animate(View v) { method in class:AlignmentTest
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistOrbContainer.java58 public void show(final boolean show, boolean animate) { argument
62 if (animate) {
69 if (animate) {
100 mScrim.animate()
105 mNavbarScrim.animate()
123 mScrim.animate()
128 mNavbarScrim.animate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
H A DGlobalActionsImpl.java130 public void disable(int state1, int state2, boolean animate) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFooter.java72 default void disable(int state1, int state2, boolean animate) {} argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerHandleView.java89 public void setTouching(boolean touching, boolean animate) { argument
97 if (!animate) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationDozeHelper.java82 boolean animate, long delay, View view) {
83 if (animate) {
81 setIntensityDark(Consumer<Float> listener, boolean dark, boolean animate, long delay, View view) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/
H A DUtils.java72 public void disable(int state1, int state2, boolean animate) { argument
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DViewGroupBindingAdapter.java39 public static void setAnimateLayoutChanges(ViewGroup view, boolean animate) { argument
40 if (animate) {
/frameworks/base/core/java/android/app/
H A DListFragment.java339 * @param animate If true, an animation will be used to transition to the
342 private void setListShown(boolean shown, boolean animate) { argument
352 if (animate) {
364 if (animate) {
/frameworks/base/core/java/android/widget/
H A DCalendarViewMaterialDelegate.java99 public void setDate(long date, boolean animate, boolean center) { argument
100 mDayPickerView.setDate(date, animate);
H A DViewAnimator.java147 * @param animate Whether or not to use the in and out animations, defaults
150 void showOnly(int childIndex, boolean animate) { argument
155 if (animate && mInAnimation != null) {
161 if (animate && mOutAnimation != null && child.getVisibility() == View.VISIBLE) {
177 final boolean animate = (!mFirstTime || mAnimateFirstTime);
178 showOnly(childIndex, animate);
257 * Returns the current animation used to animate a View that enters the screen.
269 * Specifies the animation used to animate a View that enters the screen.
281 * Returns the current animation used to animate a View that exits the screen.
293 * Specifies the animation used to animate
350 setAnimateFirstView(boolean animate) argument
[all...]
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp102 bool remove = animator->animate(mContext);
122 uint32_t AnimatorManager::animate(TreeInfo& info) { function in class:android::uirenderer::AnimatorManager
H A DAnimator.cpp229 // Set to 0 so that the animate() basically instantly finishes
237 bool BaseRenderNodeAnimator::animate(AnimationContext& context) { function in class:android::uirenderer::BaseRenderNodeAnimator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java86 applyModeBackground(-1, getMode(), false /*animate*/);
87 applyLightsOut(false /*animate*/, true /*force*/);
108 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
109 super.onTransition(oldMode, newMode, animate);
110 applyLightsOut(animate, false /*force*/);
113 private void applyLightsOut(boolean animate, boolean force) { argument
115 applyLightsOut(isLightsOut(getMode()), animate, force);
118 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { argument
125 mNavButtons.animate().cancel();
131 if (!animate) {
[all...]
H A DPhoneStatusBarTransitions.java49 applyModeBackground(-1, getMode(), false /*animate*/);
50 applyMode(getMode(), false /*animate*/);
74 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
75 super.onTransition(oldMode, newMode, animate);
76 applyMode(newMode, animate);
79 private void applyMode(int mode, boolean animate) { argument
86 if (animate) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DAnimationFilter.java52 animate(View.SCALE_X);
53 animate(View.SCALE_Y);
178 public AnimationFilter animate(Property property) { method in class:AnimationFilter
H A DNotificationRoundnessManager.java42 updateRounding(headsUp, false /* animate */);
47 updateRounding(headsUp, true /* animate */);
52 updateRounding(row, false /* animate */);
55 private void updateRounding(ActivatableNotificationView view, boolean animate) { argument
58 boolean firstChanged = view.setTopRoundness(topRoundness, animate);
59 boolean secondChanged = view.setBottomRoundness(bottomRoundness, animate);
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/
H A DDrawerLayoutActions.java148 public static ViewAction openDrawer(final int drawerEdgeGravity, final boolean animate) { argument
165 drawerLayout.openDrawer(drawerEdgeGravity, animate);
248 public static ViewAction closeDrawer(final int drawerEdgeGravity, final boolean animate) { argument
265 drawerLayout.closeDrawer(drawerEdgeGravity, animate);
/frameworks/base/core/tests/coretests/src/android/view/accessibility/
H A DAccessibilityServiceConnectionImpl.java107 public boolean resetMagnification(boolean animate) { argument
112 boolean animate) {
111 setMagnificationScaleAndCenter(float scale, float centerX, float centerY, boolean animate) argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java96 /** Whether the drawable should animate when visible. */
270 private void setFrame(int frame, boolean unschedule, boolean animate) { argument
274 mAnimating = animate;
277 if (unschedule || animate) {
280 if (animate) {
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardAbsKeyInputView.java77 resetPasswordText(false /* animate */, false /* announce */);
208 resetPasswordText(true /* animate */, !matched /* announce deletion if no match */);
211 protected abstract void resetPasswordText(boolean animate, boolean announce); argument
H A DKeyguardPasswordView.java229 protected void resetPasswordText(boolean animate, boolean announce) { argument
309 animate()
318 animate()
H A DKeyguardPinBasedInputView.java159 protected void resetPasswordText(boolean animate, boolean announce) { argument
160 mPasswordEntry.reset(animate, announce);
214 resetPasswordText(true /* animate */, true /* announce */);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DOverviewProxyService.java165 public void setBackButtonAlpha(float alpha, boolean animate) {
169 notifyBackButtonAlphaChanged(alpha, animate);
356 notifyBackButtonAlphaChanged(1f, false /* animate */);
361 private void notifyBackButtonAlphaChanged(float alpha, boolean animate) { argument
363 mConnectionCallbacks.get(i).onBackButtonAlphaChanged(alpha, animate);
410 default void onBackButtonAlphaChanged(float alpha, boolean animate) {} argument

Completed in 3131 milliseconds

12345