HomeSort by relevance Sort by last modified time
    Searched refs:animate (Results 151 - 175 of 389) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/support/v4/java/android/support/v4/app/
ListFragment.java 276 * @param animate If true, an animation will be used to transition to the
279 private void setListShown(boolean shown, boolean animate) {
289 if (animate) {
301 if (animate) {
  /packages/apps/Gallery2/src/com/android/photos/
MultiSelectGridFragment.java 226 * @param animate If true, an animation will be used to transition to the
229 private void setGridShown(boolean shown, boolean animate) {
239 if (animate) {
251 if (animate) {
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
PlayerSetupActivity.java 116 v.animate().setDuration(ToonGame.SHORT_DURATION).
120 v.animate().setDuration(ToonGame.SHORT_DURATION).
135 child.animate().alpha(0);
277 mContainer.animate().scaleX(1).scaleY(1).setInterpolator(new OvershootInterpolator());
278 mContainer.animate().setDuration(ToonGame.LONG_DURATION).withEndAction(new Runnable() {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 262 * @param animate true if the transition to the new coordinate should be animated
264 public void setHeaderPinnedAtTop(int viewIndex, int y, boolean animate) {
271 // TODO perhaps we should animate at the top as well
280 * @param animate true if the transition to the new coordinate should be animated
282 public void setHeaderPinnedAtBottom(int viewIndex, int y, boolean animate) {
290 } else if (animate && (header.y != y || !header.visible)) {
342 * @param animate true if the transition to the new coordinate should be animated
344 public void setHeaderInvisible(int viewIndex, boolean animate) {
346 if (header.visible && (animate || header.animating) && header.state == BOTTOM) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 320 v.animate().withLayer().scaleX(s).scaleY(s).alpha(1f).setDuration(animationLen);
325 public void place(View v, boolean animate) {
326 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate);
345 public synchronized void place(View v, Point pt, boolean animate) {
390 if (animate) {
391 squatter.animate().withLayer()
417 if (animate) {
SearchPanelView.java 214 public void show(final boolean show, boolean animate) {
216 final LayoutTransition transitioner = animate ? createLayoutTransitioner() : null;
239 public void hide(boolean animate) {
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 239 mTitleBar.animate().translationY(mActionBarHeight);
245 mTitleBar.animate().translationY(0);
260 public void showWeb(boolean animate) {
261 super.showWeb(animate);
262 hideNavScreen(mUiController.getTabControl().getCurrentPosition(), animate); local
346 void hideNavScreen(int position, boolean animate) {
350 if ((tab == null) || !animate) {
UI.java 123 public void showWeb(boolean animate);
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java 229 protected void updateAddFooterVisible(boolean animate) {
236 if (animate) {
244 if (animate) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanelTrack.java 153 public void fillContent(boolean animate) {
154 if (!animate) {
188 if (!animate) {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 254 mSelection.animate().cancel();
615 mBackground.animate()
624 mScrim.animate()
636 mBackground.animate()
649 mScrim.animate()
675 photo.animate().cancel();
676 photo.animate()
725 photo.animate()
740 photo.animate().cancel();
747 /** Wind up off screen, so we can animate in. *
    [all...]
  /development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/
ListViewAnimations.java 66 view.animate().setDuration(1000).alpha(0).
76 // Here's where the problem starts - this animation will animate a View object.
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_cocoa.h 93 void setBoundsInternal(const gfx::Rect& bounds, bool animate);
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_stack_view.h 52 virtual void BeginBatchUpdatePanelBounds(bool animate) OVERRIDE;
140 // Used to animate the bounds changes at a synchronized pace.
  /external/chromium_org/chrome/renderer/
chrome_render_view_observer.h 88 bool animate);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.cpp 60 void ElementAnimation::animate(Element* element, Vector<Dictionary> keyframeDictionaryVector, double duration) function in class:WebCore::ElementAnimation
131 // created using Element.animate() will have a timing with hasIterationDuration()
  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
AnimationBase.h 133 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* /*currentStyle*/, RenderStyle* /*targetStyle*/, RefPtr<RenderStyle>& /*animatedStyle*/) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPopupMenuImpl.h 71 virtual void animate(double frameBeginTime) OVERRIDE;
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackFragment.java 476 mTemporaryTextView.animate().alpha(VISIBLE).setDuration(SHORT_ANIMATION_MS);
477 mPermanentTextView.animate().alpha(INVISIBLE).setDuration(SHORT_ANIMATION_MS);
487 mTemporaryTextView.animate()
489 mPermanentTextView.animate()
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorChanSat.java 356 mButton.animate().translationX(mButton.getWidth()).setDuration(SwapButton.ANIM_DURATION);
360 mButton.animate().cancel();
372 mButton.animate().translationX(-mButton.getWidth()).setDuration(SwapButton.ANIM_DURATION);
376 mButton.animate().cancel();
EditorVignette.java 353 mButton.animate().translationX(mButton.getWidth()).setDuration(SwapButton.ANIM_DURATION);
357 mButton.animate().cancel();
369 mButton.animate().translationX(-mButton.getWidth()).setDuration(SwapButton.ANIM_DURATION);
373 mButton.animate().cancel();
  /sdk/templates/docs/
default.js 123 $('body').animate({ scrollTop: $target.offset().top }, 200, 'swing', function() {
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
MultiWaveView.java 510 // Animate handle back to the center based on current state.
533 private void hideTargets(boolean animate, boolean expanded) {
537 mAnimatingTargets = animate;
538 final int duration = animate ? HIDE_ANIMATION_DURATION : 0;
539 final int delay = animate ? HIDE_ANIMATION_DELAY : 0;
568 private void showTargets(boolean animate) {
570 mAnimatingTargets = animate;
571 final int delay = animate ? SHOW_ANIMATION_DELAY : 0;
572 final int duration = animate ? SHOW_ANIMATION_DURATION : 0;
724 * Resets the widget to default state and cancels all animation. If animate is 'true', wil
    [all...]
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.h 88 void Show(bool animate);
89 void Hide(bool animate);
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_gtk.cc 128 void InfoBar::ShowArrowFor(InfoBar* other, bool animate) {
129 arrow_model_.ShowArrowFor(other, animate);

Completed in 1215 milliseconds

1 2 3 4 5 67 8 91011>>