HomeSort by relevance Sort by last modified time
    Searched refs:animate (Results 1 - 25 of 702) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewPropertyAnimation.java 37 public boolean animate(R current, ViewAdapter adapter) { method in class:ViewPropertyAnimation
40 animator.animate(adapter.getView());
52 * @param view The view to animate.
54 void animate(View view); method in interface:ViewPropertyAnimation.Animator
GlideAnimation.java 54 boolean animate(R current, ViewAdapter adapter); method in interface:GlideAnimation
DrawableCrossFadeViewAnimation.java 43 public boolean animate(T current, ViewAdapter adapter) { method in class:DrawableCrossFadeViewAnimation
52 defaultAnimation.animate(current, adapter);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
CollapsedStatusBarFragment.java 69 mStatusBarComponent.recomputeDisableFlags(true /* animate */);
147 public void disable(int state1, int state2, boolean animate) {
154 hideSystemIconArea(animate);
155 hideOperatorName(animate);
157 showSystemIconArea(animate);
158 showOperatorName(animate);
163 hideNotificationIconArea(animate);
165 showNotificationIconArea(animate);
172 hideClock(animate);
174 showClock(animate);
    [all...]
NavigationBarTransitions.java 86 applyModeBackground(-1, getMode(), false /*animate*/);
87 applyLightsOut(false /*animate*/, true /*force*/);
108 protected void onTransition(int oldMode, int newMode, boolean animate) {
109 super.onTransition(oldMode, newMode, animate);
110 applyLightsOut(animate, false /*force*/);
113 private void applyLightsOut(boolean animate, boolean force) {
115 applyLightsOut(isLightsOut(getMode()), animate, force); local
118 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) {
125 mNavButtons.animate().cancel();
131 if (!animate) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
LoadingViewController.java 44 handleLoadingContainer(false /* done */, false /* animate */);
48 public void showContent(boolean animate) {
52 handleLoadingContainer(true /* show */, animate);
60 public void handleLoadingContainer(boolean done, boolean animate) {
61 handleLoadingContainer(mLoadingView, mContentView, done, animate);
70 * @param animate Whether or not content/loading views should animate in/out.
73 boolean animate) {
74 setViewShown(loading, !done, animate);
75 setViewShown(content, done, animate);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StackScrollerDecorView.java 59 setVisible(false /* nowVisible */, false /* animate */);
60 setSecondaryVisible(false /* nowVisible */, false /* animate */);
80 setContentVisible(contentVisible, true /* animate */);
85 * @param animate Should an animation be performed.
87 private void setContentVisible(boolean contentVisible, boolean animate) {
89 mContentAnimating = animate;
90 setViewVisible(mContent, contentVisible, animate, mContentVisibilityEndRunnable);
107 * @param animate should the change be animated.
109 public void setVisible(boolean nowVisible, boolean animate) {
112 if (animate) {
    [all...]
CrossFadeHelper.java 36 view.animate().cancel();
37 view.animate()
52 view.animate().withLayer();
72 view.animate().cancel();
106 view.animate().cancel();
111 view.animate()
118 view.animate().withLayer();
138 view.animate().cancel();
  /external/skia/tools/viewer/
GMSlide.cpp 30 bool GMSlide::animate(const SkAnimTimer& timer) { function in class:GMSlide
31 return fGM->animate(timer);
GMSlide.h 22 bool animate(const SkAnimTimer&) override;
  /external/skqp/tools/viewer/
GMSlide.cpp 30 bool GMSlide::animate(const SkAnimTimer& timer) { function in class:GMSlide
31 return fGM->animate(timer);
GMSlide.h 22 bool animate(const SkAnimTimer&) override;
  /frameworks/support/compat/src/main/java/androidx/core/view/
ViewPropertyAnimatorCompat.java 123 view.animate().setDuration(value);
138 view.animate().alpha(value);
153 view.animate().alphaBy(value);
168 view.animate().translationX(value);
183 view.animate().translationY(value);
200 * view.animate().x(0);
203 * view.animate().x(200).withEndAction(endAction);
217 view.animate().withEndAction(runnable);
237 return view.animate().getDuration();
254 view.animate().setInterpolator(value)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderInfo.java 67 public void add(ShortcutInfo item, boolean animate) {
68 add(item, contents.size(), animate);
74 public void add(ShortcutInfo item, int rank, boolean animate) {
80 itemsChanged(animate);
88 public void remove(ShortcutInfo item, boolean animate) {
93 itemsChanged(animate);
119 public void itemsChanged(boolean animate) {
121 listeners.get(i).onItemsChanged(animate);
135 public void onItemsChanged(boolean animate);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationSimSelector.java 37 private Pair<Boolean /* show */, Boolean /* animate */> mPendingShow;
52 final boolean animate = mPendingShow.second;
58 show, animate);
80 public boolean show(boolean animate) {
82 return showHide(true, animate);
86 public boolean hide(boolean animate) {
87 return showHide(false, animate);
90 private boolean showHide(final boolean show, final boolean animate) {
96 mSimSelectorView.showOrHide(show, animate);
99 mPendingShow = Pair.create(show, animate);
    [all...]
ConversationInput.java 31 final boolean animate);
41 public abstract boolean show(boolean animate);
42 public abstract boolean hide(boolean animate);
51 mConversationInputBase.showHideInternal(this, false /* show */, true /* animate */);
63 * @param animate
66 public boolean toggle(final boolean animate) {
67 mConversationInputBase.showHideInternal(this, !mShowing /* show */, true /* animate */);
78 mConversationInputBase.showHideInternal(this, true /* show */, false /* animate */);
ConversationInputManager.java 191 public void showHideMediaPicker(final boolean show, final boolean animate) {
192 showHideInternal(mMediaInput, show, animate);
198 * @param animate whether to animate the change in visibility
201 public boolean showHideSimSelector(final boolean show, final boolean animate) {
202 return showHideInternal(mSimInput, show, animate);
205 public void showHideImeKeyboard(final boolean show, final boolean animate) {
206 showHideInternal(mImeInput, show, animate);
209 public void hideAllInputs(final boolean animate) {
212 showHideInternal(mInputs[i], false, animate);
    [all...]
  /packages/apps/StorageManager/src/com/android/storagemanager/utils/
Utils.java 27 View loading, View doneLoading, boolean done, boolean animate) {
28 setViewShown(loading, !done, animate);
29 setViewShown(doneLoading, done, animate);
32 private static void setViewShown(final View view, boolean shown, boolean animate) {
33 if (animate) {
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
BummerView.java 37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) {
85 mAnimate = animate;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
BummerView.java 37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) {
85 mAnimate = animate;
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
PermissionsFrameFragment.java 63 protected void setLoading(boolean loading, boolean animate) {
64 setLoading(loading, animate, false);
67 private void setLoading(boolean loading, boolean animate, boolean force) {
71 // If there is no created view, there is no reason to animate.
72 animate = false;
75 setViewShown(mPrefsView, !loading, animate);
78 setViewShown(mLoadingView, loading, animate);
93 private void setViewShown(final View view, boolean shown, boolean animate) {
94 if (animate) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
AssistOrbContainer.java 58 public void show(final boolean show, boolean animate) {
62 if (animate) {
69 if (animate) {
100 mScrim.animate()
105 mNavbarScrim.animate()
123 mScrim.animate()
128 mNavbarScrim.animate()
  /packages/apps/Dialer/java/com/android/dialer/main/impl/toolbar/
MainToolbar.java 76 public void slideUp(boolean animate) {
79 ViewUtil.doOnGlobalLayout(this, view -> slideUp(animate));
84 animator.setDuration(animate ? SLIDE_DURATION : 0);
100 public void slideDown(boolean animate) {
104 animator.setDuration(animate ? SLIDE_DURATION : 0);
120 public void collapse(boolean animate) {
121 searchBar.collapse(animate);
125 public void expand(boolean animate, Optional<String> text) {
126 searchBar.expand(animate, text);
  /frameworks/support/compat/src/androidTest/java/androidx/core/view/
ViewPropertyAnimatorCompatTest.java 58 ViewCompat.animate(mView).alpha(0).setDuration(100).withEndAction(new Runnable() {
74 ViewCompat.animate(mView).alpha(0).setDuration(50).withEndAction(new Runnable() {
78 ViewCompat.animate(mView).alpha(1);
94 ViewCompat.animate(mView).alpha(0).setDuration(100).withStartAction(new Runnable() {
110 ViewCompat.animate(mView).alpha(0).setDuration(50).withStartAction(new Runnable() {
114 ViewCompat.animate(mView).alpha(1);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAbsSpinner.java 27 public void setSelection(int position, boolean animate) {
29 animatedTransition = animate;

Completed in 928 milliseconds

1 2 3 4 5 6 7 8 91011>>