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

1234

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DGridDirectoryHolder.java45 public void setSelected(boolean selected, boolean animate) { argument
46 super.setSelected(selected, animate);
49 if (animate) {
50 mIconCheck.animate().alpha(checkAlpha).start();
51 mIconMime.animate().alpha(1f - checkAlpha).start();
H A DGridDocumentHolder.java72 public void setSelected(boolean selected, boolean animate) { argument
77 if (animate) {
78 mIconCheck.animate().alpha(checkAlpha).start();
89 super.setSelected(selected, animate);
91 if (animate) {
92 mIconMimeSm.animate().alpha(1f - checkAlpha).start();
132 mIconMimeLg.animate().cancel();
134 mIconThumb.animate().cancel();
H A DListDocumentHolder.java68 public void setSelected(boolean selected, boolean animate) { argument
73 if (animate) {
74 mIconCheck.animate().alpha(checkAlpha).start();
84 super.setSelected(selected, animate);
86 if (animate) {
87 mIconMime.animate().alpha(1f - checkAlpha).start();
88 mIconThumb.animate().alpha(1f - checkAlpha).start();
130 mIconMime.animate().cancel();
132 mIconThumb.animate().cancel();
H A DDocumentHolder.java84 * @param animate Whether or not to animate the change. Only selection changes initiated by the
88 public void setSelected(boolean selected, boolean animate) { argument
89 // Note: the animate param doesn't apply for this base implementation, because the
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPreviewPageFrame.java69 public void setSelected(boolean selected, boolean animate) { argument
75 if (animate) {
76 animate().translationZ(mSelectedElevation)
83 if (animate) {
84 animate().translationZ(mNotSelectedElevation)
/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/recents/tv/
H A DRecentsTvImpl.java55 boolean isHomeStackVisible, boolean animate, int growTarget) {
70 if (!animate) {
54 startRecentsActivity(ActivityManager.RunningTaskInfo runningTask, boolean isHomeStackVisible, boolean animate, int growTarget) 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/phone/
H A DNavigationBarTransitions.java45 applyModeBackground(-1, getMode(), false /*animate*/);
46 applyMode(getMode(), false /*animate*/, true /*force*/);
50 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
51 super.onTransition(oldMode, newMode, animate);
52 applyMode(newMode, animate, false /*force*/);
55 private void applyMode(int mode, boolean animate, boolean force) { argument
58 applyLightsOut(isLightsOut(mode), animate, force);
61 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { argument
69 navButtons.animate().cancel();
73 if (!animate) {
[all...]
H A DPhoneStatusBarTransitions.java51 applyModeBackground(-1, getMode(), false /*animate*/);
52 applyMode(getMode(), false /*animate*/);
76 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
77 super.onTransition(oldMode, newMode, animate);
78 applyMode(newMode, animate);
81 private void applyMode(int mode, boolean animate) { argument
88 if (animate) {
/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.java334 * @param animate If true, an animation will be used to transition to the
337 private void setListShown(boolean shown, boolean animate) { argument
347 if (animate) {
359 if (animate) {
/frameworks/base/core/java/android/widget/
H A DCalendarViewMaterialDelegate.java98 public void setDate(long date, boolean animate, boolean center) { argument
99 mDayPickerView.setDate(date, animate);
H A DAbsSpinner.java269 public void setSelection(int position, boolean animate) { argument
271 boolean shouldAnimate = animate && mFirstPosition <= position &&
288 * @param animate Should the transition be animated
291 void setSelectionInt(int position, boolean animate) { argument
296 layout(delta, animate);
301 abstract void layout(int delta, boolean animate); argument
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.cpp103 bool remove = animator->animate(mContext);
123 uint32_t AnimatorManager::animate(TreeInfo& info) { function in class:android::uirenderer::AnimatorManager
H A DAnimator.cpp226 // Set to 0 so that the animate() basically instantly finishes
234 bool BaseRenderNodeAnimator::animate(AnimationContext& context) { function in class:android::uirenderer::BaseRenderNodeAnimator
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImplProxy.java59 public void showRecents(boolean triggeredFromAltTab, boolean draggingInRecents, boolean animate, argument
65 args.argi3 = animate ? 1 : 0;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java98 public Result animate(Object targetObject, String animationName, method in class:BridgeRenderSession
104 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation,
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
H A DDrawerLayoutActions.java147 public static ViewAction openDrawer(final int drawerEdgeGravity, final boolean animate) { argument
164 drawerLayout.openDrawer(drawerEdgeGravity, animate);
247 public static ViewAction closeDrawer(final int drawerEdgeGravity, final boolean animate) { argument
264 drawerLayout.closeDrawer(drawerEdgeGravity, animate);
/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/Keyguard/src/com/android/keyguard/
H A DKeyguardAbsKeyInputView.java72 resetPasswordText(false /* animate */, false /* announce */);
172 resetPasswordText(true /* animate */, !matched /* announce deletion if no match */);
175 protected abstract void resetPasswordText(boolean animate, boolean announce); argument
H A DKeyguardPasswordView.java208 protected void resetPasswordText(boolean animate, boolean announce) { argument
288 animate()
297 animate()

Completed in 4922 milliseconds

1234