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

1234

/packages/apps/StorageManager/src/com/android/storagemanager/utils/
H A DUtils.java27 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) { argument
33 if (animate) {
26 handleLoadingContainer( View loading, View doneLoading, boolean done, boolean animate) argument
/packages/apps/DeskClock/src/com/android/deskclock/
H A DBaseActivity.java57 adjustAppColor(color, false /* animate */);
66 adjustAppColor(color, false /* animate */);
73 * @param animate {@code true} if the change should be animated
75 protected void adjustAppColor(@ColorInt int color, boolean animate) { argument
89 if (animate) {
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DGridDirectoryHolder.java51 public void setSelected(boolean selected, boolean animate) { argument
52 super.setSelected(selected, animate);
55 if (animate) {
H A DGridDocumentHolder.java74 public void setSelected(boolean selected, boolean animate) { argument
79 if (animate) {
92 super.setSelected(selected, animate);
94 if (animate) {
143 mIconMimeLg.animate().cancel();
145 mIconThumb.animate().cancel();
H A DListDocumentHolder.java79 public void setSelected(boolean selected, boolean animate) { argument
84 if (animate) {
95 super.setSelected(selected, animate);
97 if (animate) {
164 mIconMime.animate().cancel();
166 mIconThumb.animate().cancel();
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DCcBccView.java49 public void show(boolean animate, boolean showCc, boolean showBcc) { argument
53 if (animate) {
54 animate(ccWasAlreadyShown);
66 private void animate(boolean ccWasAlreadyShown) { method in class:CcBccView
/packages/experimental/Bummer/src/com/android/dreams/bummer/
H A DBummerView.java37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) { argument
85 mAnimate = animate;
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DBummerView.java37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) { argument
85 mAnimate = animate;
/packages/apps/Dialer/java/com/android/incallui/answer/impl/
H A DAffordanceHolderLayout.java156 public void reset(boolean animate) { argument
157 affordanceHelper.reset(animate);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationSimSelector.java37 private Pair<Boolean /* show */, Boolean /* animate */> mPendingShow;
52 final boolean animate = mPendingShow.second;
58 show, animate);
80 public boolean show(boolean animate) { argument
82 return showHide(true, animate);
86 public boolean hide(boolean animate) { argument
87 return showHide(false, animate);
90 private boolean showHide(final boolean show, final boolean animate) { argument
96 mSimSelectorView.showOrHide(show, animate);
99 mPendingShow = Pair.create(show, animate);
[all...]
H A DConversationInput.java31 final boolean animate);
41 public abstract boolean show(boolean animate); argument
42 public abstract boolean hide(boolean animate); argument
51 mConversationInputBase.showHideInternal(this, false /* show */, true /* animate */);
63 * @param animate
66 public boolean toggle(final boolean animate) { argument
67 mConversationInputBase.showHideInternal(this, !mShowing /* show */, true /* animate */);
78 mConversationInputBase.showHideInternal(this, true /* show */, false /* animate */);
30 showHideInternal(final ConversationInput target, final boolean show, final boolean animate) argument
H A DSimSelectorView.java88 public void showOrHide(final boolean show, final boolean animate) { argument
96 if (animate) {
100 animate().alpha(mShow ? 1.0f : 0.0f)
115 if (animate) {
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
H A DPermissionsFrameFragment.java63 protected void setLoading(boolean loading, boolean animate) { argument
64 setLoading(loading, animate, false);
67 private void setLoading(boolean loading, boolean animate, boolean force) { argument
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) { argument
94 if (animate) {
/packages/apps/Settings/src/com/android/settings/widget/
H A DLoadingViewController.java44 handleLoadingContainer(false /* done */, false /* animate */);
48 public void showContent(boolean animate) { argument
52 handleLoadingContainer(true /* show */, animate);
60 public void handleLoadingContainer(boolean done, boolean animate) { argument
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);
72 handleLoadingContainer(View loading, View content, boolean done, boolean animate) argument
78 setViewShown(final View view, boolean shown, boolean animate) argument
[all...]
/packages/apps/Dialer/java/com/android/contacts/common/widget/
H A DFloatingActionButtonController.java109 * @param animate Whether or not to animate the transition.
111 public void align(int align, boolean animate) { argument
112 align(align, 0 /*offsetX */, 0 /* offsetY */, animate);
121 * @param animate Whether or not to animate the transition.
123 private void align(int align, int offsetX, int offsetY, boolean animate) { argument
131 if (animate && mFab.isShown()) {
132 mFab.animate()
/packages/apps/Dialer/java/com/android/dialer/app/widget/
H A DActionBarController.java43 slideActionBar(true /* slideUp */, false /* animate */);
48 slideActionBar(true /* slideUp */, false /* animate */);
56 slideActionBar(false /* slideUp */, false /* animate */);
61 slideActionBar(false /* slideUp */, false /* animate */);
81 mSearchBox.expand(true /* animate */, true /* requestFocus */);
93 mSearchBox.collapse(true /* animate */);
99 slideActionBar(false /* slideUp */, false /* animate */);
120 mSearchBox.expand(false /* animate */, false /* requestFocus */);
122 slideActionBar(false /* slideUp */, true /* animate */);
136 slideActionBar(true /* slideUp */, true /* animate */);
143 slideActionBar(boolean slideUp, boolean animate) argument
[all...]
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/
H A DInCallScreen.java32 void setEndCallButtonEnabled(boolean enabled, boolean animate); argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInterruptibleInOutAnimator.java62 private void animate(int direction) { method in class:InterruptibleInOutAnimator
104 * direction and animate for a correspondingly shorter duration.
107 animate(IN);
114 * direction and animate for a correspondingly shorter duration.
117 animate(OUT);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAbstractFloatingView.java67 public final void close(boolean animate) { argument
68 animate &= !Utilities.isPowerSaverOn(getContext());
69 handleClose(animate);
73 protected abstract void handleClose(boolean animate); argument
124 public static void closeAllOpenViews(Launcher launcher, boolean animate) { argument
131 ((AbstractFloatingView) child).close(animate);
H A DFolderInfo.java67 public void add(ShortcutInfo item, boolean animate) { argument
68 add(item, contents.size(), animate);
74 public void add(ShortcutInfo item, int rank, boolean animate) { argument
80 itemsChanged(animate);
88 public void remove(ShortcutInfo item, boolean animate) { argument
93 itemsChanged(animate);
119 public void itemsChanged(boolean animate) { argument
121 listeners.get(i).onItemsChanged(animate);
135 public void onItemsChanged(boolean animate); argument
H A DHotseat.java181 public void updateColor(ExtractedColors extractedColors, boolean animate) { argument
191 if (!animate) {
H A DInterruptibleInOutAnimator.java64 private void animate(int direction) { method in class:InterruptibleInOutAnimator
106 * direction and animate for a correspondingly shorter duration.
109 animate(IN);
116 * direction and animate for a correspondingly shorter duration.
119 animate(OUT);
/packages/apps/Launcher3/src/com/android/launcher3/notification/
H A DNotificationMainView.java93 boolean animate) {
114 if (animate) {
147 animate().cancel();
175 animate()
92 applyNotificationInfo(NotificationInfo mainNotification, View iconView, boolean animate) argument
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
H A DPermissionsFrameFragment.java84 protected void setLoading(boolean loading, boolean animate) { argument
85 setLoading(loading, animate, false);
88 private void setLoading(boolean loading, boolean animate, boolean force) { argument
92 // If there is no created view, there is no reason to animate.
93 animate = false;
96 setViewShown(mPrefsView, !loading, animate);
99 setViewShown(mLoadingView, loading, animate);
104 private void setViewShown(final View view, boolean shown, boolean animate) { argument
105 if (animate) {
/packages/apps/Settings/src/com/android/settings/
H A DPreviewSeekBarPreferenceFragment.java185 private void setPreviewLayer(int index, boolean animate) { argument
191 mPreviewPager.getCurrentItem(), animate);

Completed in 673 milliseconds

1234