Searched refs:animate (Results 1 - 25 of 26) sorted by relevance

12

/packages/apps/Launcher2/src/com/android/launcher2/
H A DAllAppsView.java28 public void zoom(float zoom, boolean animate); argument
H A DInterruptibleInOutAnimator.java61 private void animate(int direction) { method in class:InterruptibleInOutAnimator
103 * direction and animate for a correspondingly shorter duration.
106 animate(IN);
113 * direction and animate for a correspondingly shorter duration.
116 animate(OUT);
H A DPagedViewIcon.java155 void setChecked(boolean checked, boolean animate) { argument
173 if (animate) {
H A DPagedViewWidget.java225 void setChecked(boolean checked, boolean animate) { argument
243 if (animate) {
H A DAppWidgetResizeFrame.java290 * to LauncherModel and animate the resize frame.
308 public void snapToWidget(boolean animate) { argument
330 if (!animate) {
H A DLauncher.java1191 // In all these cases, only animate if we're already on home
2413 // We only need to animate in the dock divider if we're going from spring loaded mode
2543 mHotseat.animate().alpha(1f).setDuration(duration);
2557 mHotseat.animate().alpha(0f).setDuration(duration);
3197 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) { argument
3203 if (animate) {
3206 cling.animate()
H A DWorkspace.java2140 // If the dragView is null, we can't animate
2141 boolean animate = dragView != null;
2142 if (animate) {
2973 // Now we animate the dragView, (ie. the widget or shortcut preview) into its final
3049 // cellLayout to its final transform -- this means we animate the drag view to
3489 void moveToDefaultScreen(boolean animate) { argument
3491 if (animate) {
/packages/apps/Browser/src/com/android/browser/
H A DAutologinBar.java92 public void updateAutoLogin(Tab tab, boolean animate) { argument
123 showAutoLogin(animate);
125 hideAutoLogin(animate);
129 void showAutoLogin(boolean animate) { argument
130 mTitleBar.showAutoLogin(animate);
133 void hideAutoLogin(boolean animate) { argument
134 mTitleBar.hideAutoLogin(animate);
H A DTitleBar.java262 public void updateAutoLogin(Tab tab, boolean animate) { argument
269 mAutoLogin.updateAutoLogin(tab, animate);
272 public void showAutoLogin(boolean animate) { argument
280 if (animate) {
286 public void hideAutoLogin(boolean animate) { argument
292 if (animate) {
H A DSnapshotBar.java145 mTitleAnimator = mTitle.animate()
149 mDateAnimator = mDate.animate()
156 mTitleAnimator = mTitle.animate()
160 mDateAnimator = mDate.animate()
H A DPhoneUi.java254 mTitleBar.animate().translationY(mActionBarHeight);
260 mTitleBar.animate().translationY(0);
315 public void showWeb(boolean animate) { argument
316 super.showWeb(animate);
317 hideNavScreen(mUiController.getTabControl().getCurrentPosition(), animate);
400 void hideNavScreen(int position, boolean animate) { argument
403 if ((tab == null) || !animate) {
H A DUI.java127 public void showWeb(boolean animate); argument
H A DNavScreen.java198 protected void close(int position, boolean animate) { argument
199 mUi.hideNavScreen(position, animate);
H A DBaseUi.java573 protected void updateAutoLogin(Tab tab, boolean animate) { argument
574 mTitleBar.updateAutoLogin(tab, animate);
822 public void showWeb(boolean animate) { argument
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DPinnedHeaderListAdapter.java150 boolean animate = position < firstPositionForPartition;
151 listView.setHeaderPinnedAtBottom(i, listHeight - bottomHeaderHeight, animate);
H A DPinnedHeaderListView.java250 * @param animate true if the transition to the new coordinate should be animated
252 public void setHeaderPinnedAtTop(int viewIndex, int y, boolean animate) { argument
259 // TODO perhaps we should animate at the top as well
268 * @param animate true if the transition to the new coordinate should be animated
270 public void setHeaderPinnedAtBottom(int viewIndex, int y, boolean animate) { argument
278 } else if (animate && (header.y != y || !header.visible)) {
330 * @param animate true if the transition to the new coordinate should be animated
332 public void setHeaderInvisible(int viewIndex, boolean animate) { argument
334 if (header.visible && (animate || header.animating) && header.state == BOTTOM) {
/packages/apps/Contacts/src/com/android/contacts/voicemail/
H A DVoicemailPlaybackFragment.java451 mTemporaryTextView.animate().alpha(VISIBLE).setDuration(SHORT_ANIMATION_MS);
452 mPermanentTextView.animate().alpha(INVISIBLE).setDuration(SHORT_ANIMATION_MS);
462 mTemporaryTextView.animate()
464 mPermanentTextView.animate()
/packages/apps/Phone/src/com/android/phone/
H A DDTMFTwelveKeyDialer.java629 * @param animate if true, open the dialer with an animation.
631 public void openDialer(boolean animate) { argument
636 if (animate) {
649 * @param animate if true, close the dialer with an animation.
651 public void closeDialer(boolean animate) { argument
656 if (animate) {
H A DCallCard.java700 // ... but when becoming visible, never animate (mainly to be
1513 view.animate().cancel();
1520 view.animate().setDuration(DURATION);
1521 view.animate().alpha(1);
1553 view.animate().cancel();
1554 view.animate().setDuration(DURATION);
1555 view.animate().alpha(0f).setListener(new AnimatorListenerAdapter() {
1559 view.animate().setListener(null);
H A DInCallScreen.java2771 private void showDialpadInternal(boolean animate) { argument
2772 mDialer.openDialer(animate);
2779 private void hideDialpadInternal(boolean animate) { argument
2780 mDialer.closeDialer(animate);
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekFragment.java394 boolean animate = true;
399 animate = false;
404 boolean delayAnimation = goTo(event.selectedTime.toMillis(true), animate, true, false);
H A DSimpleDayPickerFragment.java373 * @param animate Whether to scroll to the given time or just redraw at the
380 public boolean goTo(long time, boolean animate, boolean setSelected, boolean forceScroll) { argument
453 if (animate) {
/packages/apps/Email/src/com/android/email/activity/
H A DThreePaneLayout.java332 private boolean changePaneState(int newState, boolean animate) { argument
346 // Just make sure the first transition doesn't animate.
348 animate = false;
355 // (We still use animator even if animate == false; we just use 0 duration.)
420 startLayoutAnimation(animate ? ANIMATION_DURATION : 0, listener,
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DFloatingChildLayout.java156 ViewPropertyAnimator animator = mChild.animate();
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaFragment.java267 private void goTo(EventInfo event, boolean animate) { argument
319 // TODO figure out the animate bit

Completed in 374 milliseconds

12