Home
last modified time | relevance | path

Searched refs:mAnimation (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
DBrowserSnapshotPage.java213 private AnimatorSet mAnimation; field in BrowserSnapshotPage.SnapshotAdapter
218 mAnimation = new AnimatorSet(); in SnapshotAdapter()
219 mAnimation.playTogether( in SnapshotAdapter()
222 mAnimation.setStartDelay(100); in SnapshotAdapter()
223 mAnimation.setDuration(400); in SnapshotAdapter()
224 mAnimation.addListener(new AnimatorListener() { in SnapshotAdapter()
264 mAnimation.setTarget(view); in bindView()
266 if (!mAnimation.isRunning()) { in bindView()
267 mAnimation.start(); in bindView()
DNavigationBarTablet.java265 private AnimatorSet mAnimation; field in NavigationBarTablet
277 mAnimation = new AnimatorSet(); in hideNavButtons()
278 mAnimation.playTogether(anim1, anim2, anim3); in hideNavButtons()
279 mAnimation.addListener(new AnimatorListenerAdapter() { in hideNavButtons()
283 mAnimation = null; in hideNavButtons()
286 mAnimation.setDuration(150); in hideNavButtons()
287 mAnimation.start(); in hideNavButtons()
291 if (mAnimation != null) { in showNavButtons()
292 mAnimation.cancel(); in showNavButtons()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DGLView.java65 private CanvasAnimation mAnimation; field in GLView
83 mAnimation = animation; in startAnimation()
84 if (mAnimation != null) { in startAnimation()
85 mAnimation.start(); in startAnimation()
86 root.registerLaunchedAnimation(mAnimation); in startAnimation()
231 && component.mAnimation == null) return; in renderChild()
238 CanvasAnimation anim = component.mAnimation; in renderChild()
244 component.mAnimation = null; in renderChild()
DSlotView.java71 private SlotAnimation mAnimation = null; field in SlotView
171 mAnimation = new ScatteringAnimation(position); in startScatteringAnimation()
172 mAnimation.start(); in startScatteringAnimation()
177 mAnimation = new RisingAnimation(); in startRisingAnimation()
178 mAnimation.start(); in startRisingAnimation()
271 if (mAnimation != null) { in render()
272 more |= mAnimation.calculate(animTime); in render()
323 if (mAnimation != null && mAnimation.isActive()) { in renderItem()
324 mAnimation.apply(canvas, index, rect); in renderItem()
DCropView.java89 private AnimationController mAnimation = new AnimationController(); field in CropView
146 mAnimation.initialize(); in onLayout()
148 mAnimation.parkNow( in onLayout()
170 AnimationController a = mAnimation; in render()
217 RectF r = mAnimation.mapRect(face, mRect); in renderFace()
250 RectF r = mAnimation.mapRect(faces.get(i), mRect); in getFaceIndexByPosition()
306 RectF r = mAnimation.mapRect(highlight, new RectF()); in startParkingAnimation()
447 mAnimation.startParkingAnimation(faceRect); in setRectangle()
452 float scale = mAnimation.getScale(); in moveEdges()
469 mAnimation.inverseMapPoint(point); in moveEdges()
[all …]
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
DProgressBar.java208 private AlphaAnimation mAnimation; field in ProgressBar
811 mAnimation = null; in startAnimation()
818 mAnimation = new AlphaAnimation(0.0f, 1.0f); in startAnimation()
819 mAnimation.setRepeatMode(mBehavior); in startAnimation()
820 mAnimation.setRepeatCount(Animation.INFINITE); in startAnimation()
821 mAnimation.setDuration(mDuration); in startAnimation()
822 mAnimation.setInterpolator(mInterpolator); in startAnimation()
823 mAnimation.setStartTime(Animation.START_ON_FIRST_FRAME); in startAnimation()
832 mAnimation = null; in stopAnimation()
981 if (mAnimation != null) { in onDraw()
[all …]