Home
last modified time | relevance | path

Searched refs:scaleAnimation (Results 1 – 3 of 3) sorted by relevance

/development/samples/browseable/WatchViewStub/src/com.example.android.google.wearable.watchviewstub/
DMainActivity.java62 ScaleAnimation scaleAnimation = new ScaleAnimation(1.0f, 0.7f, 1.0f, 0.7f, in onLayoutClicked() local
64 scaleAnimation.setDuration(300); in onLayoutClicked()
65 scaleAnimation.setRepeatCount(1); in onLayoutClicked()
66 scaleAnimation.setRepeatMode(Animation.REVERSE); in onLayoutClicked()
67 mRectBackground.startAnimation(scaleAnimation); in onLayoutClicked()
/development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
DPropertyAnimations.java77 ObjectAnimator scaleAnimation = in onCreate() local
79 scaleAnimation.setRepeatCount(1); in onCreate()
80 scaleAnimation.setRepeatMode(ValueAnimator.REVERSE); in onCreate()
85 setAnimation.play(rotateAnimation).before(scaleAnimation); in onCreate()
90 setupAnimation(scaleButton, scaleAnimation, R.animator.scale); in onCreate()
/development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
DViewAnimations.java73 final ScaleAnimation scaleAnimation = new ScaleAnimation(1, 2, 1, 2); in onCreate() local
74 scaleAnimation.setDuration(1000); in onCreate()
81 setAnimation.addAnimation(scaleAnimation); in onCreate()
86 setupAnimation(scaleButton, scaleAnimation, R.anim.scale_anim); in onCreate()