OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:translateAnimation
(Results
1 - 6
of
6
) sorted by null
/cts/tests/tests/view/src/android/view/animation/cts/
TranslateAnimationTest.java
38
import android.view.animation.
TranslateAnimation
;
77
new
TranslateAnimation
(mActivity, null);
84
new
TranslateAnimation
(mActivity, attr);
86
// Test {@link
TranslateAnimation
#
TranslateAnimation
(float, float, float, float)}
87
new
TranslateAnimation
(0.6f, 0.6f, 0.6f, 0.6f);
89
new
TranslateAnimation
(-0.6f, -0.6f, -0.6f, -0.6f);
91
// Test {@link
TranslateAnimation
#
TranslateAnimation
(int, float, int, float, int, float,
93
new
TranslateAnimation
(Animation.RELATIVE_TO_SELF, 0.6f, Animation.RELATIVE_TO_SELF, 0.6f
[
all
...]
/development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java
28
import android.view.animation.
TranslateAnimation
;
61
final
TranslateAnimation
translateAnimation
=
62
new
TranslateAnimation
(Animation.ABSOLUTE, 0,
65
translateAnimation
.setDuration(1000);
79
setAnimation.addAnimation(
translateAnimation
);
84
setupAnimation(translateButton,
translateAnimation
, R.anim.translate_anim);
/development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java
62
ObjectAnimator
translateAnimation
=
64
translateAnimation
.setRepeatCount(1);
65
translateAnimation
.setRepeatMode(ValueAnimator.REVERSE);
84
setAnimation.play(
translateAnimation
).after(alphaAnimation).before(rotateAnimation);
88
setupAnimation(translateButton,
translateAnimation
, R.animator.move);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
SimSelectorView.java
24
import android.view.animation.
TranslateAnimation
;
117
final
TranslateAnimation
translateAnimation
= new
TranslateAnimation
(
121
translateAnimation
.setInterpolator(UiUtils.EASE_OUT_INTERPOLATOR);
122
translateAnimation
.setDuration(UiUtils.REVEAL_ANIMATION_DURATION);
123
mSimListView.startAnimation(
translateAnimation
);
/packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java
702
ObjectAnimator
translateAnimation
= ObjectAnimator.ofInt(this, "scroll",
704
translateAnimation
.setRepeatCount(0);
705
translateAnimation
.setInterpolator(interpolator);
706
translateAnimation
.setDuration(EXIT_FLING_ANIMATION_DURATION_MS);
707
translateAnimation
.addListener(mSnapToBottomListener);
708
translateAnimation
.start();
[
all
...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java
37
import android.view.animation.
TranslateAnimation
;
[
all
...]
Completed in 638 milliseconds